Skip to content

Commit 1c5f90b

Browse files
debug info
1 parent 77b3e6f commit 1c5f90b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/reusable_gpu.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,15 @@ jobs:
8989
- name: Build UMF
9090
run: cmake --build ${{env.BUILD_DIR}} --config ${{matrix.build_type}} -j ${{matrix.number_of_processors}}
9191

92-
- name: Run tests
92+
- name: Run tests (only L0)
9393
working-directory: ${{env.BUILD_DIR}}
94-
run: ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
94+
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"
95101
96102
- name: Run examples
97103
working-directory: ${{env.BUILD_DIR}}

0 commit comments

Comments
 (0)