File tree Expand file tree Collapse file tree 1 file changed +19
-8
lines changed
Expand file tree Collapse file tree 1 file changed +19
-8
lines changed Original file line number Diff line number Diff line change @@ -75,11 +75,22 @@ The package also provides `mkl_fft.interfaces.numpy_fft` and `mkl_fft.interfaces
7575---
7676
7777To build ` mkl_fft ` from sources on Linux with Intel® OneMKL:
78- - install a recent version of MKL, if necessary;
79- - execute ` source /path_to_oneapi/mkl/latest/env/vars.sh ` ;
80- - execute ` python -m pip install . `
81-
82- To build ` mkl_fft ` from sources on Linux with conda:
83- - install ` python ` and ` mkl-devel ` in a conda environment;
84- - execute ` export MKLROOT=$CONDA_PREFIX `
85- - execute ` python -m pip install . `
78+ - create a virtual environemnt: ` python3 -m venv fft_env `
79+ - activate the environment: ` source fft_env/bin/activate `
80+ - install a recent version of OneMKL, if necessary
81+ - execute ` source /path_to_oneapi/mkl/latest/env/vars.sh `
82+ - ` git clone https://github.com/IntelPython/mkl_fft.git mkl_fft `
83+ - ` cd mkl_fft `
84+ - ` python -m pip install . `
85+ - ` cd .. `
86+ - ` python -c "import mkl_fft" `
87+
88+ To build ` mkl_fft ` from sources on Linux with conda follow these steps:
89+ - ` conda create -n fft_env python=3.12 mkl-devel `
90+ - ` conda activate fft_env `
91+ - ` export MKLROOT=$CONDA_PREFIX `
92+ - ` git clone https://github.com/IntelPython/mkl_fft.git mkl_fft `
93+ - ` cd mkl_fft `
94+ - ` python -m pip install . `
95+ - ` cd .. `
96+ - ` python -c "import mkl_fft" `
You can’t perform that action at this time.
0 commit comments