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: configs/BENCH-CONFIG-SPEC.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ Configs have the three highest parameter keys:
98
98
|`data`:`distributed_split`| None | None, `rank_based`| Split type used to distribute data between machines in distributed algorithm. `None` type means usage of all data without split on all machines. `rank_based` type splits the data equally between machines with split sequence based on rank id from MPI. |
|`algorithm`:`device`|`default`|`default`, `cpu`, `gpu`| Device selected for computation. |
101
+
|`algorithm`:`device`|`default`|`default`, `cpu`, `gpu`| Device selected for computation. `sklearnex`+`gpu` cases enable sklearn's `array_api_dispatch` and use `dpnp` data by default (see `sklearn_context` below). |
102
102
103
103
## Benchmark-Specific Parameters
104
104
@@ -109,7 +109,7 @@ Configs have the three highest parameter keys:
109
109
|`algorithm`:`estimator`| None || Name of measured estimator. |
110
110
|`algorithm`:`estimator_params`| Empty `dict`|| Parameters for estimator constructor. |
111
111
|`algorithm`:`batch_size`:`{stage}`| None | Any positive integer | Enables online mode for `{stage}` methods of estimator (sequential calls for each batch). |
112
-
|`algorithm`:`sklearn_context`| None || Parameters for sklearn `config_context` used over estimator. |
112
+
|`algorithm`:`sklearn_context`| None || Parameters for sklearn `config_context` used over estimator. `array_api_dispatch` requires `SCIPY_ARRAY_API=1`, which scikit-learn_bench sets by default if it is unset in the environment. |
113
113
|`algorithm`:`sklearnex_context`| None || Parameters for sklearnex `config_context` used over estimator. Updated by `sklearn_context` if set. |
114
114
|`bench`:`ensure_sklearnex_patching`| True || If True, warns about sklearnex patching failures. |
0 commit comments