Add workflow to compile for HIP #130
This file contains hidden or 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
name: CMake | ||
on: | ||
push: | ||
pull_request: | ||
branches: [ "main" ] | ||
env: | ||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | ||
BUILD_TYPE: Debug | ||
jobs: | ||
build-cuda: | ||
uses: ./.github/workflows/cmake-run-cuda.yml | ||
with: | ||
cuda-version: "12.8.0" | ||
build-cuda-12-6: | ||
needs: build-cuda | ||
uses: ./.github/workflows/cmake-run-cuda.yml | ||
with: | ||
cuda-version: "12.6.0" | ||
build-cuda-12-5: | ||
needs: build-cuda | ||
uses: ./.github/workflows/cmake-run-cuda.yml | ||
with: | ||
cuda-version: "12.5.0" | ||
build-hip-6-3-0: | ||
needs: build-cuda # Only attempt HIP after CUDA was succesfull | ||
uses: ./.github/workflows/cmake-run-hip.yml | ||
Check failure on line 32 in .github/workflows/cmake.yml
|
||
with: | ||
version: "6.3.0" | ||
gpu_arch: "gfx942" |