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`^!
130
130
131
+
benchmark-quick: ## run quick benchmark
132
+
python -m asv run --quick --config csp/benchmarks/asv.conf.jsonc --verbose `git rev-parse --abbrev-ref HEAD`^!
133
+
134
+
benchmark-local: ## run benchmark using the local env
135
+
python -m asv run --python=same --config csp/benchmarks/asv.conf.jsonc --verbose
136
+
137
+
benchmark-debug: ## debug a failing benchmark
138
+
if [ -z"${BENCHMARK_NAME}" ];thenecho'Usage: make benchmark-debug BENCHMARK_NAME=<name of benchmark> [PARAM_INDEX=<index of param permutation>]';exit 1;fi
139
+
if [ -z"${PARAM_INDEX}" ];then \
140
+
python -m pdb -m asv.benchmark run csp/benchmarks ${BENCHMARK_NAME}"{}" debug_profile.txt debug_results.txt;\
141
+
else\
142
+
python -m pdb -m asv.benchmark run csp/benchmarks ${BENCHMARK_NAME}-${PARAM_INDEX}"{}" debug_profile.txt debug_results.txt;\
0 commit comments