From 66b2ac38a6710c678da3be90ff160e1fff41b226 Mon Sep 17 00:00:00 2001 From: Weronika Lewandowska Date: Mon, 6 Nov 2023 13:58:17 +0100 Subject: [PATCH] [CI][OpenCL] adapt e2e workflow to opencl target --- .github/workflows/e2e_nightly.yml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/.github/workflows/e2e_nightly.yml b/.github/workflows/e2e_nightly.yml index eebb1f7bfa..e3cda49245 100644 --- a/.github/workflows/e2e_nightly.yml +++ b/.github/workflows/e2e_nightly.yml @@ -11,7 +11,8 @@ jobs: strategy: matrix: adapter: [ - {name: CUDA} + {name: CUDA, str_name: cuda, prefix: "ext_oneapi_", config: "--cuda --hip", unit: "gpu"}, + {name: OPENCL, str_name: opencl, prefix: "", config: "", unit: "cpu"} ] build_type: [Release] compiler: [{c: clang, cxx: clang++}] @@ -59,12 +60,18 @@ jobs: run: LD_LIBRARY_PATH=${{github.workspace}}/dpcpp_compiler/lib cmake --build ${{github.workspace}}/ur-repo/build -j $(nproc) - - name: Set env vars & pre setup + - name: Set prefer UR + run: echo "SYCL_PREFER_UR=1" >> $GITHUB_ENV + + - name: Set CUDA env vars + if: matrix.adapter.name == 'CUDA' run: | - echo "SYCL_PREFER_UR=1" >> $GITHUB_ENV echo "CUDA_LIB_PATH=/usr/local/cuda/lib64/stubs" >> $GITHUB_ENV echo "LD_LIBRARY_PATH=/usr/local/cuda/compat/:/usr/local/cuda/lib64:$LD_LIBRARY_PATH" >> $GITHUB_ENV - source /opt/intel/oneapi/setvars.sh + + - name: Run pre setup + run: | + source /opt/intel/oneapi/setvars.sh --force sycl-ls - name: Configure SYCL @@ -73,7 +80,7 @@ jobs: -t ${{matrix.build_type}} -o ${{github.workspace}}/sycl_build --cmake-gen "Unix Makefiles" - --ci-defaults --cuda --hip + --ci-defaults ${{matrix.adapter.config}} --cmake-opt="-DLLVM_INSTALL_UTILS=ON" --cmake-opt="-DSYCL_PI_TESTS=OFF" --cmake-opt=-DCMAKE_C_COMPILER_LAUNCHER=ccache @@ -91,7 +98,7 @@ jobs: - name: Swap UR loader and adapters run: | cp ${{github.workspace}}/ur-repo/build/lib/libur_loader.so* ${{github.workspace}}/sycl_build/lib/ - cp ${{github.workspace}}/ur-repo/build/lib/libur_adapter_cuda.so* ${{github.workspace}}/sycl_build/lib/ + cp ${{github.workspace}}/ur-repo/build/lib/libur_adapter_${{matrix.adapter.str_name}}.so* ${{github.workspace}}/sycl_build/lib/ - name: Set additional env. vars run: | @@ -110,7 +117,7 @@ jobs: -GNinja -B ${{github.workspace}}/build-e2e/ -S ${{github.workspace}}/sycl-repo/sycl/test-e2e/ - -DSYCL_TEST_E2E_TARGETS="ext_oneapi_cuda:gpu" + -DSYCL_TEST_E2E_TARGETS="${{matrix.adapter.prefix}}${{matrix.adapter.str_name}}:${{matrix.adapter.unit}}" -DCMAKE_CXX_COMPILER="$(which clang++)" -DLLVM_LIT="${{github.workspace}}/sycl-repo/llvm/utils/lit/lit.py"