-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[UR][E2E][CUDA] Add E2E Cuda nightly workflow
- Loading branch information
Showing
1 changed file
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
name: E2E Nightly | ||
|
||
on: | ||
schedule: | ||
# Run every day at 23:00 UTC | ||
- cron: '0 23 * * *' | ||
|
||
jobs: | ||
e2e-build-hw: | ||
name: Build SYCL, UR, run E2E | ||
strategy: | ||
matrix: | ||
adapter: [ | ||
{name: CUDA} | ||
] | ||
build_type: [Release] | ||
compiler: [{c: clang, cxx: clang++}] | ||
|
||
runs-on: ${{matrix.adapter.name}} | ||
|
||
steps: | ||
- name: Checkout UR | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: adapters | ||
path: ur-repo | ||
|
||
- name: Checkout SYCL | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: intel/llvm | ||
ref: sycl | ||
path: sycl-repo | ||
|
||
- name: Install pip packages | ||
working-directory: ${{github.workspace}}/ur-repo | ||
run: pip install -r third_party/requirements.txt | ||
|
||
- name: Download DPC++ | ||
run: | | ||
wget -O dpcpp_compiler.tar.gz https://github.com/intel/llvm/releases/download/nightly-2023-09-21/sycl_linux.tar.gz | ||
mkdir dpcpp_compiler | ||
tar -xvf dpcpp_compiler.tar.gz -C dpcpp_compiler | ||
- name: Configure CMake UR | ||
working-directory: ${{github.workspace}}/ur-repo | ||
run: > | ||
cmake | ||
-B build | ||
-DCMAKE_C_COMPILER=${{matrix.compiler.c}} | ||
-DCMAKE_CXX_COMPILER=${{matrix.compiler.cxx}} | ||
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} | ||
-DUR_ENABLE_TRACING=ON | ||
-DUR_DEVELOPER_MODE=ON | ||
-DUR_BUILD_ADAPTER_${{matrix.adapter.name}}=ON | ||
-DUR_DPCXX=${{github.workspace}}/dpcpp_compiler/bin/clang++ | ||
- name: Build UR | ||
run: LD_LIBRARY_PATH=${{github.workspace}}/dpcpp_compiler/lib | ||
cmake --build ${{github.workspace}}/ur-repo/build -j $(nproc) | ||
|
||
- name: Set env vars & pre setup | ||
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 | ||
sycl-ls | ||
- name: Configure SYCL | ||
run: > | ||
python3 sycl-repo/buildbot/configure.py | ||
-t ${{matrix.build_type}} | ||
-o ${{github.workspace}}/sycl_build | ||
--cmake-gen "Unix Makefiles" | ||
--ci-defaults --cuda --hip | ||
--cmake-opt="-DLLVM_INSTALL_UTILS=ON" | ||
--cmake-opt="-DSYCL_PI_TESTS=OFF" | ||
--cmake-opt=-DCMAKE_C_COMPILER_LAUNCHER=ccache | ||
--cmake-opt=-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
- name: Build SYCL | ||
run: cmake --build ${{github.workspace}}/sycl_build | ||
|
||
- name: Run check-sycl | ||
# Remove after fixing SYCL test :: abi/layout_handler.cpp | ||
# This issue does not affect further execution of e2e with UR. | ||
continue-on-error: true | ||
run: cmake --build ${{github.workspace}}/sycl_build --target check-sycl | ||
|
||
- 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/ | ||
- name: Setup SYCL | ||
run: | | ||
echo "${{github.workspace}}/sycl_build/bin" >> $GITHUB_PATH | ||
echo "LD_LIBRARY_PATH=${{github.workspace}}/sycl_build/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV | ||
which clang++ sycl-ls | ||
SYCL_PI_TRACE=-1 sycl-ls | ||
- name: Build e2e tests | ||
run: > | ||
cmake | ||
-GNinja | ||
-B ${{github.workspace}}/build-e2e/ | ||
-S ${{github.workspace}}/sycl-repo/sycl/test-e2e/ | ||
-DSYCL_TEST_E2E_TARGETS="ext_oneapi_cuda:gpu" | ||
-DCMAKE_CXX_COMPILER="$(which clang++)" | ||
-DLLVM_LIT="${{github.workspace}}/sycl-repo/llvm/utils/lit/lit.py" | ||
- name: Run e2e tests | ||
run: ninja -C build-e2e check-sycl-e2e | ||
|
||
# Workspace on self-hosted runners is not cleaned automatically. | ||
# We have to delete the files created outside of using actions. | ||
- name: Cleanup self-hosted workspace | ||
if: always() | ||
run: | | ||
ls -la ./ | ||
rm -rf ./* || true |