File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,15 @@ Where `<numpy_version>` should be the latest version from https://software.repos
36
36
37
37
## Building
38
38
39
- Intel(R) C compiler and Intel(R) Math Kernel Library are required to build ` mkl_umath ` from source:
39
+ Intel(R) C compiler and Intel(R) Math Kernel Library are required to build ` mkl_umath ` from source
40
40
41
+ If MKL is installed via Conda, ` MKLROOT ` environment variable must be set
41
42
``` sh
42
- # ensure that MKL is installed into Python prefix, Intel LLVM compiler is activated
43
43
export MKLROOT=$CONDA_PREFIX
44
- CC=icx pip install --no-build-isolation --no-deps -e .
44
+ CC=icx pip install --no-build-isolation --no-deps .
45
+ ```
46
+
47
+ To develop,
48
+ ``` sh
49
+ python setup.py develop --no-deps -G Ninja -DCMAKE_C_COMPILER:PATH=icx
45
50
```
You can’t perform that action at this time.
0 commit comments