You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
python -m asv run --config csp/benchmarks/asv.conf.jsonc --verbose `git rev-parse --abbrev-ref HEAD`^!
127
127
128
+
benchmark-quick: ## run quick benchmark
129
+
python -m asv run --quick --config csp/benchmarks/asv.conf.jsonc --verbose `git rev-parse --abbrev-ref HEAD`^!
130
+
131
+
benchmark-local: ## run benchmark using the local env
132
+
python -m asv run --python=same --config csp/benchmarks/asv.conf.jsonc --verbose
133
+
134
+
benchmark-debug: ## debug a failing benchmark
135
+
if [ -z"${BENCHMARK_NAME}" ];thenecho'Usage: make benchmark-debug BENCHMARK_NAME=<name of benchmark> [PARAM_INDEX=<index of param permutation>]';exit 1;fi
136
+
if [ -z"${PARAM_INDEX}" ];then \
137
+
python -m pdb -m asv.benchmark run csp/benchmarks ${BENCHMARK_NAME}"{}" debug_profile.txt debug_results.txt;\
138
+
else\
139
+
python -m pdb -m asv.benchmark run csp/benchmarks ${BENCHMARK_NAME}-${PARAM_INDEX}"{}" debug_profile.txt debug_results.txt;\
0 commit comments