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
@@ -182,6 +182,42 @@ The recipe recognizes the following environment variables:
182
182
183
183
This recipe is useful when wanting to run a list of JavaScript benchmark files generated by some other command (e.g., a filtered list of changed JavaScript benchmark files obtained via `git diff`).
184
184
185
+
* * *
186
+
187
+
### Julia
188
+
189
+
#### benchmark-julia
190
+
191
+
Runs Julia benchmarks.
192
+
193
+
<!-- run-disable -->
194
+
195
+
```bash
196
+
$ make benchmark-julia
197
+
```
198
+
199
+
The recipe recognizes the following environment variables:
This recipe is useful when wanting to glob for Julia benchmark files (e.g., run all Julia benchmarks for a particular package).
204
+
205
+
#### benchmark-julia-files
206
+
207
+
Runs a specified list of Julia benchmark files.
208
+
209
+
<!-- run-disable -->
210
+
211
+
```bash
212
+
$ make benchmark-julia-files FILES='/foo/benchmark.jl /bar/benchmark.jl'
213
+
```
214
+
215
+
The recipe recognizes the following environment variables:
216
+
217
+
-**FILES**: list of Julia benchmark files.
218
+
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`).
0 commit comments