From b2acf6c69ac1104a97da2ba9a81bba40f222b3a2 Mon Sep 17 00:00:00 2001 From: Chun Cai Date: Sun, 7 Apr 2024 15:53:32 +0800 Subject: [PATCH 1/2] Docs: update the default recommended requirements for conda --- docs/quick_start/easy_install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick_start/easy_install.md b/docs/quick_start/easy_install.md index de1f04989fd..035aa188c2c 100644 --- a/docs/quick_start/easy_install.md +++ b/docs/quick_start/easy_install.md @@ -206,7 +206,7 @@ A pre-built ABACUS binary with all requirements is available at [conda-forge](ht ```bash # Install # We recommend installing ABACUS in a new environment to avoid potential conflicts: -conda create -n abacus_env abacus -c conda-forge +conda create -n abacus_env abacus blas=*=mkl mpich -c conda-forge # Run conda activate abacus_env From 48b6a41b6a7cc99277715b4f0018f2a55a5435f2 Mon Sep 17 00:00:00 2001 From: Chun Cai Date: Sun, 7 Apr 2024 17:51:10 +0800 Subject: [PATCH 2/2] update variant grammar --- docs/quick_start/easy_install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/quick_start/easy_install.md b/docs/quick_start/easy_install.md index 035aa188c2c..5e449197b3c 100644 --- a/docs/quick_start/easy_install.md +++ b/docs/quick_start/easy_install.md @@ -206,7 +206,7 @@ A pre-built ABACUS binary with all requirements is available at [conda-forge](ht ```bash # Install # We recommend installing ABACUS in a new environment to avoid potential conflicts: -conda create -n abacus_env abacus blas=*=mkl mpich -c conda-forge +conda create -n abacus_env abacus "libblas=*=*mkl" mpich -c conda-forge # Run conda activate abacus_env @@ -216,7 +216,7 @@ OMP_NUM_THREADS=1 mpirun -n 4 abacus conda update -n abacus_env abacus -c conda-forge ``` -> If OpenBLAS gives warning about OpenMP threads, please install conda package `openblas=*=openmp*` or `blas=*=mkl`. See [switching BLAS implementation in conda](https://conda-forge.org/docs/maintainer/knowledge_base.html#switching-blas-implementation). +> If OpenBLAS gives warning about OpenMP threads, please install conda package `"openblas=*=openmp*"` or `"libblas=*=*mkl"`. See [switching BLAS implementation in conda](https://conda-forge.org/docs/maintainer/knowledge_base.html#switching-blas-implementation). > ABACUS supports `OpenMPI` and `MPICH` variant. Install `mpich` or `openmpi` package to switch MPI library if required.