File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ How to run sklearnex benchmarks on CPU using the `sklbench` module and regular s
50
50
python -m sklbench --configs configs/regular \
51
51
--filters algorithm:library=sklearnex algorithm:device=cpu \
52
52
--environment-name ENV_NAME --result-file result_sklearnex_cpu_regular.json
53
- # same command with shorter argument aliases for typing convenience
53
+ # Same command with shorter argument aliases for typing convenience
54
54
python -m sklbench -c configs/regular \
55
55
-f algorithm:library=sklearnex algorithm:device=cpu \
56
56
-e ENV_NAME -r result_sklearnex_cpu_regular.json
@@ -74,6 +74,13 @@ python -m sklbench -c configs/regular \
74
74
--prefetch-datasets -l INFO
75
75
```
76
76
77
+ To select measurement for few algorithms only, extend filter (` -f ` ) argument:
78
+ ``` bash
79
+ # ...
80
+ -f algorithm:library=sklearnex algorithm:device=cpu algorithm:estimator=PCA,KMeans
81
+ # ...
82
+ ```
83
+
77
84
For a description of all benchmarks runner arguments, refer to [ documentation] ( sklbench/runner/README.md#arguments ) .
78
85
79
86
### Report Generator
You can’t perform that action at this time.
0 commit comments