Skip to content

Commit

Permalink
OpenCL CI trial and error
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiomestre committed Oct 24, 2023
1 parent 3a3aae3 commit db76c8b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,14 +163,15 @@ jobs:
strategy:
matrix:
adapter: [
{name: CUDA, triplet: nvptx64-nvidia-cuda},
{name: HIP, triplet: spir64}, # should be amdgcn-amdhsa, but build scripts for device binaries are currently broken for this target.
{name: L0, triplet: spir64}
{name: CUDA, runner: CUDA, triplet: nvptx64-nvidia-cuda},
{name: HIP, runner: HIP, triplet: spir64}, # should be amdgcn-amdhsa, but build scripts for device binaries are currently broken for this target.
{name: L0, runner: L0, triplet: spir64},
{name: OPENCL, runner: ubuntu-latest, triplet: spir64}
]
build_type: [Debug, Release]
compiler: [{c: gcc, cxx: g++}, {c: clang, cxx: clang++}]

runs-on: ${{matrix.adapter.name}}
runs-on: ${{matrix.adapter.runner}}

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit db76c8b

Please sign in to comment.