We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77b3e6f commit 1c5f90bCopy full SHA for 1c5f90b
.github/workflows/reusable_gpu.yml
@@ -89,9 +89,15 @@ jobs:
89
- name: Build UMF
90
run: cmake --build ${{env.BUILD_DIR}} --config ${{matrix.build_type}} -j ${{matrix.number_of_processors}}
91
92
- - name: Run tests
+ - name: Run tests (only L0)
93
working-directory: ${{env.BUILD_DIR}}
94
- run: ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
+ run: |
95
+ export SYCL_UR_TRACE=1
96
+ export UR_L0_DEBUG=1
97
+ export UMF_LOG="level:debug;flush:debug;output:stderr;pid:no"
98
+ export UR_LOG_LEVEL_ZERO="level:error;flush:error"
99
+ export ZE_ENABLE_LOADER_DEBUG_TRACE=1
100
+ ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test -R "test_provider_level_zero"
101
102
- name: Run examples
103
0 commit comments