Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workarounds for broken complex type operator overloads in HIP 5.7 onwards #1083

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 16 additions & 15 deletions ci/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
include:
- local: 'ci/cpu/clang12_release.yml'
- local: 'ci/cpu/clang13_release_cxx20.yml'
- local: 'ci/cpu/clang14_release_stdexec.yml'
- local: 'ci/cpu/clang15_release.yml'
- local: 'ci/cpu/gcc11_codecov.yml'
- local: 'ci/cpu/gcc11_release.yml'
- local: 'ci/cpu/gcc11_release_stdexec.yml'
- local: 'ci/cpu/gcc11_debug_stdexec.yml'
- local: 'ci/cpu/gcc12_release_cxx20.yml'
- local: 'ci/cuda/gcc11_release.yml'
- local: 'ci/cuda/gcc11_release_scalapack.yml'
- local: 'ci/cuda/gcc11_codecov.yml'
- local: 'ci/cuda/gcc11_debug_scalapack.yml'
- local: 'ci/rocm/clang14_release.yml'
- local: 'ci/rocm/clang14_release_stdexec.yml'
# - local: 'ci/cpu/clang12_release.yml'
# - local: 'ci/cpu/clang13_release_cxx20.yml'
# - local: 'ci/cpu/clang14_release_stdexec.yml'
# - local: 'ci/cpu/clang15_release.yml'
# - local: 'ci/cpu/gcc11_codecov.yml'
# - local: 'ci/cpu/gcc11_release.yml'
# - local: 'ci/cpu/gcc11_release_stdexec.yml'
# - local: 'ci/cpu/gcc11_debug_stdexec.yml'
# - local: 'ci/cpu/gcc12_release_cxx20.yml'
# - local: 'ci/cuda/gcc11_release.yml'
# - local: 'ci/cuda/gcc11_release_scalapack.yml'
# - local: 'ci/cuda/gcc11_codecov.yml'
# - local: 'ci/cuda/gcc11_debug_scalapack.yml'
# - local: 'ci/rocm/clang14_release.yml'
# - local: 'ci/rocm/clang14_release_stdexec.yml'
- local: 'ci/rocm/clang14_rocm57_release.yml'
70 changes: 70 additions & 0 deletions ci/docker/release-rocm571.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
#

Check failure on line 1 in ci/docker/release-rocm571.yaml

View workflow job for this annotation

GitHub Actions / check-licenses

check the license in ./ci/docker/release-rocm571.yaml
# 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:
- /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=17
- amdgpu_target=gfx90a:xnack-
blas:
require:: openblas
lapack:
require:: openblas
mpich:
require:
- '~rocm'
- 'device=ch3'
- 'netmod=tcp'
hip:
require:
- '@5.7.1'
# llvm-amdgpu:
# externals:
# - spec: llvm-amdgpu@5.7.1 ~rocm-device-libs
# prefix: /opt/rocm-5.7.1/llvm
# buildable: false
# rocm-device-libs:
# externals:
# - spec: rocm-device-libs@5.7.1
# prefix: /opt/rocm-5.7.1
# buildable: false
# hip:
# externals:
# - spec: hip@5.7.1
# prefix: /opt/rocm-5.7.1
# buildable: false
# rocblas:
# externals:
# - spec: rocblas@5.7.1
# prefix: /opt/rocm-5.7.1
# buildable: false
# rocsolver:
# externals:
# - spec: rocsolver@5.7.1
# prefix: /opt/rocm-5.7.1
# buildable: false
# hsa-rocr-dev:
# externals:
# - spec: hsa-rocr-dev@5.7.1
# prefix: /opt/rocm-5.7.1
# buildable: false
22 changes: 22 additions & 0 deletions ci/rocm/clang14_rocm57_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
include:
- local: 'ci/common-ci.yml'

rocm clang14 rocm57 release deps:
extends: .build_deps_common
variables:
# BASE_IMAGE: docker.io/rocm/dev-ubuntu-22.04:5.7.1
EXTRA_APTGET: "clang-14 libomp-14-dev" # rocblas rocblas-dev rocsolver rocsolver-dev llvm-amdgpu rocm-device-libs"
COMPILER: clang@14
USE_ROCBLAS: "ON"
SPACK_ENVIRONMENT: ci/docker/release-rocm571.yaml
BUILD_IMAGE: $CSCS_REGISTRY_PATH/rocm57-clang14-release/build

rocm clang14 rocm57 release build:
extends:
- .build_common
after_script: null
needs:
- rocm clang14 rocm57 release deps
variables:
# DEPLOY_BASE_IMAGE: docker.io/rocm/dev-ubuntu-22.04:5.7.1
DEPLOY_IMAGE: $CSCS_REGISTRY_PATH/rocm57-clang14-release/deploy:$CI_COMMIT_SHA
Loading
Loading