-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI configuration with ROCm 6 (#1240)
- Loading branch information
Showing
3 changed files
with
92 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# | ||
# Distributed Linear Algebra with Future (DLAF) | ||
# | ||
# Copyright (c) 2018-2024, ETH Zurich | ||
# All rights reserved. | ||
# | ||
# Please, refer to the LICENSE file in the root directory. | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
|
||
spack: | ||
include: | ||
- /spack_environment/common.yaml | ||
|
||
view: false | ||
concretizer: | ||
unify: | ||
true | ||
|
||
specs: | ||
- dla-future@master +rocm amdgpu_target=gfx90a:xnack- +miniapps +ci-test | ||
|
||
packages: | ||
all: | ||
variants: | ||
- build_type=Release | ||
- cxxstd=20 | ||
- amdgpu_target=gfx90a:xnack- | ||
pika: | ||
require: | ||
- '+stdexec' | ||
blas: | ||
require:: openblas | ||
lapack: | ||
require:: openblas | ||
mpich: | ||
require: | ||
- '~rocm' | ||
- 'device=ch3' | ||
- 'netmod=tcp' | ||
llvm-amdgpu: | ||
externals: | ||
- spec: llvm-amdgpu@6.0.2 ~rocm-device-libs | ||
prefix: /opt/rocm-6.0.2/llvm | ||
buildable: false | ||
rocm-device-libs: | ||
externals: | ||
- spec: rocm-device-libs@6.0.2 | ||
prefix: /opt/rocm-6.0.2 | ||
buildable: false | ||
hip: | ||
externals: | ||
- spec: hip@6.0.2 | ||
prefix: /opt/rocm-6.0.2 | ||
buildable: false | ||
rocblas: | ||
externals: | ||
- spec: rocblas@6.0.2 | ||
prefix: /opt/rocm-6.0.2 | ||
buildable: false | ||
rocsolver: | ||
externals: | ||
- spec: rocsolver@6.0.2 | ||
prefix: /opt/rocm-6.0.2 | ||
buildable: false | ||
hsa-rocr-dev: | ||
externals: | ||
- spec: hsa-rocr-dev@6.0.2 | ||
prefix: /opt/rocm-6.0.2 | ||
buildable: false |
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,21 @@ | ||
include: | ||
- local: 'ci/common-ci.yml' | ||
|
||
rocm clang15 stdexec release deps: | ||
extends: .build_deps_common | ||
variables: | ||
BASE_IMAGE: docker.io/rocm/dev-ubuntu-22.04:6.0.2 | ||
EXTRA_APTGET: "clang-15 libomp-15-dev rocblas rocblas-dev rocsolver rocsolver-dev llvm-amdgpu rocm-device-libs" | ||
COMPILER: clang@15 | ||
USE_ROCBLAS: "ON" | ||
SPACK_ENVIRONMENT: ci/docker/release-rocm602-stdexec.yaml | ||
DEPS_IMAGE: $CSCS_REGISTRY_PATH/rocm-clang15-stdexec-release/deps | ||
|
||
rocm clang15 stdexec release build: | ||
extends: | ||
- .build_common | ||
after_script: null | ||
needs: | ||
- rocm clang15 stdexec release deps | ||
variables: | ||
DLAF_IMAGE: $CSCS_REGISTRY_PATH/rocm-clang15-stdexec-release/dlaf:$CI_COMMIT_SHA |