diff --git a/README.md b/README.md index 3f0dac9..cd82692 100644 --- a/README.md +++ b/README.md @@ -75,9 +75,9 @@ Look in the [`./examples/`](https://github.com/Mottl/lightgbm3-rs/blob/main/exam ## Features **`lightgbm3`** supports the following features: - `polars` for [polars](https://github.com/pola-rs/polars) support -- `openmp` for [MPI](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-mpi-version) support +- `openmp` for [multi-processing](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-threadless-version-not-recommended) support - `gpu` for [GPU](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-gpu-version) support -- `cuda` for experimental [CUDA](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-cuda-version) support +- `cuda` for [CUDA](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-cuda-version) support ## Benchmarks ``` diff --git a/src/lib.rs b/src/lib.rs index 499cdc3..df1d404 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,9 +2,9 @@ //! //! **`lightgbm3`** supports the following features: //! - `polars` for [polars](https://github.com/pola-rs/polars) support -//! - `openmp` for [MPI](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-mpi-version) support +//! - `openmp` for [multi-processing](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-threadless-version-not-recommended) support //! - `gpu` for [GPU](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-gpu-version) support -//! - `cuda` for experimental [CUDA](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-cuda-version) support +//! - `cuda` for [CUDA](https://lightgbm.readthedocs.io/en/latest/Installation-Guide.html#build-cuda-version) support //! //! # Examples //! ### Training: