Use AI to build optimal Inference Compute systems
Run the standard-library tests locally:
python3 -m unittest discover -s dv/tests -vRun the first event-model simulation:
python3 -m sim.event_model.rcif_sim sim/workloads/sample_agentic_coding_trace.json --prettyGenerate a synthetic agentic coding trace:
python3 -m sim.tracegen.generate_agentic_trace \
--requests 4 \
--prefix-tokens 131072 \
--reuse-ratio 0.9 \
--output /tmp/generated_agentic_trace.jsonVerilator lint/build/simulation runs on Modal CPU workers by default. Local Verilator is not required.
make lint
make verilate
make sim
make regressIf modal is not on PATH:
MODAL=/Users/kb/Library/Python/3.9/bin/modal make regressThe local-* targets are only for debugging on machines that already have Verilator installed:
make local-lint
make local-sim
make local-regress