-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into docstring-fixes
- Loading branch information
Showing
133 changed files
with
4,286 additions
and
1,135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,6 @@ | |
*.out | ||
*.app | ||
|
||
|
||
# ------------------- CMake | ||
|
||
CMakeLists.txt.user | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -223,6 +223,28 @@ cuda release build gcc11: | |
THREADS_PER_NODE: 24 | ||
USE_CODECOV: "false" | ||
|
||
cuda release build gcc11 scalapack: | ||
extends: .build_spack_common | ||
variables: | ||
BUILD_DOCKER_FILE: ci/docker/build.Dockerfile | ||
DEPLOY_DOCKER_FILE: ci/docker/deploy.Dockerfile | ||
BASE_IMAGE: docker.io/nvidia/cuda:11.7.1-devel-ubuntu22.04 | ||
DEPLOY_BASE_IMAGE: docker.io/ubuntu:22.04 | ||
EXTRA_APTGET: "" | ||
EXTRA_APTGET_DEPLOY: "glibc-tools" | ||
# glibc-tools is needed for libSegFault on ubuntu:22.04 | ||
COMPILER: [email protected] | ||
CXXSTD: 17 | ||
USE_MKL: "ON" | ||
USE_ROCBLAS: "OFF" | ||
SPACK_ENVIRONMENT: ci/docker/release-cuda-scalapack.yaml | ||
COMMON_SPACK_ENVIRONMENT: ci/docker/common.yaml | ||
BUILD_IMAGE: $CSCS_REGISTRY_PATH/release-cuda-gcc11-scalapack/build | ||
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/release-cuda-gcc11-scalapack/deploy:$CI_COMMIT_SHA | ||
SLURM_CONSTRAINT: gpu | ||
THREADS_PER_NODE: 24 | ||
USE_CODECOV: "false" | ||
|
||
cuda codecov build gcc11: | ||
extends: .build_spack_common | ||
variables: | ||
|
@@ -245,6 +267,28 @@ cuda codecov build gcc11: | |
THREADS_PER_NODE: 24 | ||
USE_CODECOV: "true" | ||
|
||
cuda codecov build gcc11 scalapack: | ||
extends: .build_spack_common | ||
variables: | ||
BUILD_DOCKER_FILE: ci/docker/build.Dockerfile | ||
DEPLOY_DOCKER_FILE: ci/docker/codecov.Dockerfile | ||
BASE_IMAGE: docker.io/nvidia/cuda:11.7.1-devel-ubuntu22.04 | ||
DEPLOY_BASE_IMAGE: docker.io/ubuntu:22.04 | ||
EXTRA_APTGET: "" | ||
EXTRA_APTGET_DEPLOY: "glibc-tools" | ||
# glibc-tools is needed for libSegFault on ubuntu:22.04 | ||
COMPILER: [email protected] | ||
CXXSTD: 17 | ||
USE_MKL: "OFF" | ||
USE_ROCBLAS: "OFF" | ||
SPACK_ENVIRONMENT: ci/docker/debug-cuda-scalapack.yaml | ||
COMMON_SPACK_ENVIRONMENT: ci/docker/common.yaml | ||
BUILD_IMAGE: $CSCS_REGISTRY_PATH/codecov-cuda-gcc11/build | ||
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/codecov-cuda-gcc11/deploy:$CI_COMMIT_SHA | ||
SLURM_CONSTRAINT: gpu | ||
THREADS_PER_NODE: 24 | ||
USE_CODECOV: "true" | ||
|
||
rocm release build clang14+rocm-5.3.3: | ||
extends: .build_spack_common | ||
variables: | ||
|
@@ -332,6 +376,15 @@ cuda release test gcc11: | |
- artifact: pipeline.yml | ||
job: cuda release build gcc11 | ||
|
||
cuda release test gcc11 scalapack: | ||
extends: .run_common | ||
needs: | ||
- cuda release build gcc11 scalapack | ||
trigger: | ||
include: | ||
- artifact: pipeline.yml | ||
job: cuda release build gcc11 scalapack | ||
|
||
cuda codecov test gcc11: | ||
extends: .run_common | ||
needs: | ||
|
@@ -341,3 +394,13 @@ cuda codecov test gcc11: | |
include: | ||
- artifact: pipeline.yml | ||
job: cuda codecov build gcc11 | ||
|
||
cuda codecov test gcc11 scalapack: | ||
extends: .run_common | ||
needs: | ||
- cuda codecov build gcc11 scalapack | ||
trigger: | ||
strategy: depend | ||
include: | ||
- artifact: pipeline.yml | ||
job: cuda codecov build gcc11 scalapack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# | ||
# Distributed Linear Algebra with Future (DLAF) | ||
# | ||
# Copyright (c) 2018-2023, ETH Zurich | ||
# All rights reserved. | ||
# | ||
# Please, refer to the LICENSE file in the root directory. | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
|
||
spack: | ||
include: | ||
- common.yaml | ||
|
||
view: false | ||
concretizer: | ||
unify: | ||
true | ||
|
||
specs: | ||
- dla-future@master build_type=Debug +cuda +miniapps +scalapack +ci-test ^openblas threads=openmp ^mpich+fortran | ||
|
||
packages: | ||
all: | ||
variants: | ||
- 'build_type=Release' | ||
pika: | ||
variants: | ||
- 'build_type=Debug' | ||
- 'malloc=system' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# | ||
# Distributed Linear Algebra with Future (DLAF) | ||
# | ||
# Copyright (c) 2018-2023, ETH Zurich | ||
# All rights reserved. | ||
# | ||
# Please, refer to the LICENSE file in the root directory. | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
|
||
spack: | ||
include: | ||
- common.yaml | ||
|
||
view: false | ||
concretizer: | ||
unify: | ||
true | ||
|
||
specs: | ||
- dla-future@master +cuda +miniapps +scalapack +ci-test ^intel-mkl threads=openmp ^mpich | ||
|
||
packages: | ||
all: | ||
variants: | ||
- 'build_type=Release' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# | ||
# Distributed Linear Algebra with Future (DLAF) | ||
# | ||
# Copyright (c) 2018-2023, ETH Zurich | ||
# All rights reserved. | ||
# | ||
# Please, refer to the LICENSE file in the root directory. | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package(PkgConfig REQUIRED) | ||
|
||
pkg_search_module(_SCALAPACK scalapack) | ||
|
||
find_library( | ||
SCALAPACK_LIBRARY NAME scalapack | ||
HINTS ${_SCALAPACK_LIBRARY_DIRS} | ||
ENV | ||
SCALAPACKROOT | ||
SCALAPACK_ROOT | ||
SCALAPACK_PREFIX | ||
SCALAPACK_DIR | ||
SCALAPACKDIR | ||
/usr | ||
PATH_SUFFIXES lib | ||
) | ||
|
||
find_package_handle_standard_args(SCALAPACK DEFAULT_MSG SCALAPACK_LIBRARY) | ||
|
||
mark_as_advanced(SCALAPACK_LIBRARY) | ||
|
||
if(SCALAPACK_FOUND) | ||
if(NOT TARGET DLAF::SCALAPACK) | ||
add_library(DLAF::SCALAPACK INTERFACE IMPORTED GLOBAL) | ||
endif() | ||
|
||
target_link_libraries(DLAF::SCALAPACK INTERFACE "${SCALAPACK_LIBRARY}") | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.