From 132fb18b1073468aea7dc46cca0c3aef1135828d Mon Sep 17 00:00:00 2001 From: Evseniia Komarova <70146207+ekomarova@users.noreply.github.com> Date: Wed, 9 Oct 2024 18:13:29 +0200 Subject: [PATCH 1/2] Add Intel channel for installing wheels --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 08974e5..32ae313 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,17 @@ or from conda forge channel: To install mkl_random Pypi package please use following command: ``` - python -m pip install mkl_random + python -m pip install -i https://software.repos.intel.com/python/pypi --extra-index-url https://pypi.org/simple mkl_random ``` +If command above installs NumPy package from the Pypi, please use following command to install Intel optimized NumPy wheel package from Intel Pypi Cloud: + +``` + python -m pip install -i https://software.repos.intel.com/python/pypi --extra-index-url https://pypi.org/simple mkl_random numpy== +``` + +Where `` should be the latest version from [https://anaconda.org/intel/numpy](https://software.repos.intel.com/python/conda/) + --- `mkl_random` is not fixed-seed backward compatible drop-in replacement for `numpy.random`, meaning that it implements sampling from the same distributions as `numpy.random`. From 5e8b4a2ae791c8d2ca7304ce549b2aebaa30ce23 Mon Sep 17 00:00:00 2001 From: Evseniia Komarova <70146207+ekomarova@users.noreply.github.com> Date: Wed, 9 Oct 2024 18:14:27 +0200 Subject: [PATCH 2/2] Fix the incorrect link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 32ae313..1c80714 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ If command above installs NumPy package from the Pypi, please use following comm python -m pip install -i https://software.repos.intel.com/python/pypi --extra-index-url https://pypi.org/simple mkl_random numpy== ``` -Where `` should be the latest version from [https://anaconda.org/intel/numpy](https://software.repos.intel.com/python/conda/) +Where `` should be the latest version from https://software.repos.intel.com/python/conda/ ---