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
Copy file name to clipboardExpand all lines: tools/make/lib/benchmark/README.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -218,6 +218,42 @@ The recipe recognizes the following environment variables:
218
218
219
219
This recipe is useful when wanting to run a list of Julia benchmark files generated by some other command (e.g., a filtered list of changed Julia benchmark files obtained via `git diff`).
220
220
221
+
* * *
222
+
223
+
### Python
224
+
225
+
#### benchmark-python
226
+
227
+
Runs Python benchmarks.
228
+
229
+
<!-- run-disable -->
230
+
231
+
```bash
232
+
$ make benchmark-python
233
+
```
234
+
235
+
The recipe recognizes the following environment variables:
This recipe is useful when wanting to glob for Python benchmark files (e.g., run all Python benchmarks for a particular package).
240
+
241
+
#### benchmark-python-files
242
+
243
+
Runs a specified list of Python benchmark files.
244
+
245
+
<!-- run-disable -->
246
+
247
+
```bash
248
+
$ make benchmark-python-files FILES='/foo/benchmark.py /bar/benchmark.py'
249
+
```
250
+
251
+
The recipe recognizes the following environment variables:
252
+
253
+
-**FILES**: list of Python benchmark files.
254
+
255
+
This recipe is useful when wanting to run a list of Python benchmark files generated by some other command (e.g., a filtered list of changed Python benchmark files obtained via `git diff`).
0 commit comments