fix: pass ARGS through in benchmark Makefile targets
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
8
Makefile
8
Makefile
@@ -29,11 +29,11 @@ monitor-log: ## Start background metric logger
|
|||||||
benchmark-setup: ## Ensure toolboxes and test models are ready
|
benchmark-setup: ## Ensure toolboxes and test models are ready
|
||||||
@bash scripts/benchmark/setup.sh
|
@bash scripts/benchmark/setup.sh
|
||||||
|
|
||||||
benchmark-baseline: ## Capture pre-optimization baseline
|
benchmark-baseline: ## Capture pre-optimization baseline (supports ARGS="--max-size 20 --skip-longctx")
|
||||||
@bash bin/benchmark baseline
|
@bash bin/benchmark baseline $(ARGS)
|
||||||
|
|
||||||
benchmark: ## Run full benchmark suite
|
benchmark: ## Run full benchmark suite (supports ARGS="--tag NAME --max-size 20")
|
||||||
@bash bin/benchmark run
|
@bash bin/benchmark run $(ARGS)
|
||||||
|
|
||||||
benchmark-compare: ## Compare two benchmark runs (usage: make benchmark-compare BEFORE=dir AFTER=dir)
|
benchmark-compare: ## Compare two benchmark runs (usage: make benchmark-compare BEFORE=dir AFTER=dir)
|
||||||
@bash bin/benchmark compare $(BEFORE) $(AFTER)
|
@bash bin/benchmark compare $(BEFORE) $(AFTER)
|
||||||
|
|||||||
Reference in New Issue
Block a user