Add checks for KERNEL_FLOAT_FP16_OPS_AVAILABLE in fp16.h #152
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: | |
| BUILD_TYPE: Debug | |
| jobs: | |
| build-cuda: | |
| uses: ./.github/workflows/cmake-run-cuda.yml | |
| with: | |
| cuda-version: "12.8.0" | |
| build-hip: | |
| needs: build-cuda # Only attempt HIP after CUDA was succesfull | |
| uses: ./.github/workflows/cmake-run-hip.yml | |
| with: | |
| rocm-version: "6.3.0" | |
| build-cuda-12-9: | |
| if: github.ref_name == 'main' | |
| needs: build-cuda | |
| uses: ./.github/workflows/cmake-run-cuda.yml | |
| with: | |
| cuda-version: "12.9.0" | |
| build-cuda-12-6: | |
| if: github.ref_name == 'main' | |
| needs: build-cuda | |
| uses: ./.github/workflows/cmake-run-cuda.yml | |
| with: | |
| cuda-version: "12.6.0" | |
| build-cuda-12-5: | |
| if: github.ref_name == 'main' | |
| needs: build-cuda | |
| uses: ./.github/workflows/cmake-run-cuda.yml | |
| with: | |
| cuda-version: "12.5.0" | |
| build-hip-6-2: | |
| if: github.ref_name == 'main' | |
| needs: build-hip | |
| uses: ./.github/workflows/cmake-run-hip.yml | |
| with: | |
| rocm-version: "6.2.0" | |
| build-hip-6-4: | |
| if: github.ref_name == 'main' | |
| needs: build-hip | |
| uses: ./.github/workflows/cmake-run-hip.yml | |
| with: | |
| rocm-version: "6.4.0" |