Skip to content

Commit 74af6ce

Browse files
committed
few more ENABLE_SCALAPACK -> TA_SCALAPACK instances
1 parent d7c024d commit 74af6ce

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
-DMPIEXEC_PREFLAGS='--bind-to;none;--allow-run-as-root'
3939
-DCMAKE_PREFIX_PATH="/usr/local/opt/bison;/usr/local/opt/scalapack;/usr/local/opt/boost"
4040
-DTA_ASSERT_POLICY=TA_ASSERT_THROW
41-
-DENABLE_SCALAPACK=ON
41+
-DTA_SCALAPACK=ON
4242
4343
steps:
4444
- uses: actions/checkout@v4

.gitlab-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ variables:
1818
CUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda
1919
${BLA_VENDOR}
2020
${BLA_THREADS}
21-
${ENABLE_SCALAPACK}
21+
${TA_SCALAPACK}
2222
2323
before_script:
2424
# NB: if CMAKE_BUILD_PARALLEL_LEVEL is not set (i.e. using shared runner), use 1 to ensure we have enough memory
@@ -42,7 +42,7 @@ ubuntu:
4242
image: valeevgroup/${IMAGE}
4343
variables:
4444
TA_PYTHON : "TA_PYTHON=ON"
45-
ENABLE_SCALAPACK : "ENABLE_SCALAPACK=OFF"
45+
TA_SCALAPACK : "TA_SCALAPACK=OFF"
4646
script:
4747
- ./ci/.build-project
4848
--build ./build

examples/scalapack/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
# Create example executable
2626

27-
if(ENABLE_SCALAPACK)
27+
if(TA_SCALAPACK)
2828

2929
foreach(_exec conversion evp)
3030

@@ -35,4 +35,4 @@ foreach(_exec conversion evp)
3535

3636
endforeach()
3737

38-
endif(ENABLE_SCALAPACK)
38+
endif(TA_SCALAPACK)

src/TiledArray/initialize.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ bool initialized_to_be_quiet();
4444
/// initialization:
4545
/// | Environment Variable | Default| Description |
4646
/// |----------------------|--------|-------------|
47-
/// | `TA_LINALG_BACKEND` | none | If set, chooses the linear algebra backend to use; valid values are `scalapack` (distributed library ScaLAPACK, only available if configured with `ENABLE_SCALAPACK=ON`), `lapack` (non-distributed library LAPACK, always available), and `ttg` (experimental [TTG](https://github.com/TESSEorg/TTG) backend, only implements Cholesky); the default is to choose best available backend automatically (recommended) |
47+
/// | `TA_LINALG_BACKEND` | none | If set, chooses the linear algebra backend to use; valid values are `scalapack` (distributed library ScaLAPACK, only available if configured with `TA_SCALAPACK=ON`), `lapack` (non-distributed library LAPACK, always available), and `ttg` (experimental [TTG](https://github.com/TESSEorg/TTG) backend, only implements Cholesky); the default is to choose best available backend automatically (recommended) |
4848
/// | `TA_LINALG_DISTRIBUTED_MINSIZE` | 4194304 | Unless `TA_LINALG_BACKEND` is set, this controls the minimum matrix size (#rows times #columns) for which the distributed backend if chosen when selecting the best available backend |
4949
/// @warning MADWorld can only be initialized/finalized once, hence if
5050
/// TiledArray initializes MADWorld

0 commit comments

Comments
 (0)