Skip to content

Commit b9753be

Browse files
debug info
1 parent 77b3e6f commit b9753be

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/reusable_gpu.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,14 @@ 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+
ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test -R "test_provider_level_zero"
95100
96101
- name: Run examples
97102
working-directory: ${{env.BUILD_DIR}}

0 commit comments

Comments
 (0)