File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -39,3 +39,14 @@ like `Polars <https://pola.rs>`__.
3939Extension currently does not offer accelerated routines for input types not listed
4040here - when receiving an unsupported class, estimators will fall back to stock Scikit-Learn to
4141handle it, so make sure to convert them to a supported type when using Extension.
42+
43+ .. warning ::
44+ In some cases data passed to estimators might be copied/duplicated during calls to methods such as fit/predict.
45+ The affected cases are listed below.
46+
47+ - Non-contiguous NumPy array - i.e. where strides are wider than one element across both rows and columns
48+ - For SciPy CSR matrix / CSR array index array is always copied.
49+ - Heterogeneous NumPy array
50+ - If SYCL queue is provided for device without `float64 ` support but data are `float64 `, data are copied with reduced precision.
51+ - If :ref: `Array API <array_api >` is not enabled then data from GPU devices are always copied to the host device and then result table
52+ (for applicable methods) is copied to the source device.
You can’t perform that action at this time.
0 commit comments