Lecture Packs L01-L11¶
These are runnable mini-lecture notes for Retriever foundations and reliability workflows.
Group L1 Foundations (L01-L06)¶
- L01 Retriever Mental Model
- L02 Typed IO and Adapter Semantics
- L03 Clocking Model and Multirate Intuition
- L04 Building and Validating IR
- L05 Runtime Backends and Execution Lifecycle
- L06 Pipeline Ergonomics and Composition Antipatterns
Group L2 Debug and Reliability (L07-L11)¶
- L07 Stepper-First Debugging
- L08 Record/Replay Workflows and Determinism
- L09 Synchronization and Fan-In/Fan-Out Behavior
- L10 Stateful Flows and Reset Contracts
- L11 Monitoring and Feedback Loops
Baseline Run Pack (L1)¶
Run from repository root:
pixi run python -m examples.tutorial.a_flow_fundamentals.01_basic_flow
pixi run python -m examples.tutorial.a_flow_fundamentals.03_adapter_connection
pixi run python -m examples.tutorial.a_flow_fundamentals.02_clock_types
pixi run python -m examples.tutorial.b_ir_and_execution.01_context_graph
pixi run python -m examples.tutorial.b_ir_and_execution.02_ir_validation
pixi run python -m examples.tutorial.b_ir_and_execution.03_execution_build
pixi run python -m examples.tutorial.b_ir_and_execution.04_rt_execution --backend multiprocessing --duration 2
pixi run python -m examples.tutorial.a_flow_fundamentals.05_pipeline_ergonomics --mode context --exec step --steps 3
Baseline Run Pack (L2)¶
pixi run python -m examples.tutorial.c_debug_and_replay.01_debug_stepper --steps 5
pixi run python -m examples.tutorial.c_debug_and_replay.06_trace_contract_basics
pixi run python -m examples.tutorial.c_debug_and_replay.02_debug_perception_stepper
pixi run python -m examples.tutorial.c_debug_and_replay.04_record_replay_perception record --out logs/perception.rrd --replay-out logs/perception.mcap --steps 4
pixi run python -m examples.tutorial.c_debug_and_replay.04_record_replay_perception replay --recording logs/perception.rrd --steps 4 --visualize stdout
pixi run python -m examples.tutorial.c_debug_and_replay.07_incident_response_replay_drill
pixi run python -m examples.tutorial.e_resource_and_sync.01_multirate_window --backend multiprocessing --duration 2
pixi run python -m examples.tutorial.d_closed_loop_state_feedback.04_stateful_flow_reset --steps 5 --dt 0.1
pixi run python -m examples.tutorial.d_closed_loop_state_feedback.07_feedback_intro --backend multiprocessing --duration 2
pixi run python -m examples.tutorial.d_closed_loop_state_feedback.09_execution_monitoring --backend multiprocessing --duration 2