Skip to content

Commit 7d08ec1

Browse files
[CI] Add debug log in multi-device job
1 parent 3a49cca commit 7d08ec1

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/build-hw-reusable.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,12 @@ permissions:
3232
contents: read
3333

3434
env:
35-
UR_LOG_CUDA: "level:error;flush:error"
35+
UR_LOG_CUDA: "level:debug;flush:debug"
3636
UR_LOG_HIP: "level:error;flush:error"
37-
UR_LOG_LEVEL_ZERO: "level:error;flush:error"
3837
UR_LOG_NATIVE_CPU: "level:error;flush:error"
3938
UR_LOG_OPENCL: "level:error;flush:error"
39+
UR_LOG_LEVEL_ZERO: "level:debug;flush:debug"
40+
UMF_LOG: "level:debug;flush:debug;output:stdout"
4041

4142
jobs:
4243
adapter-build-hw:

.github/workflows/multi_device.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ concurrency:
1010
permissions:
1111
contents: read
1212

13+
env:
14+
UR_LOG_LEVEL_ZERO: "level:debug;flush:debug"
15+
UMF_LOG: "level:debug;flush:debug;output:stdout"
16+
1317
jobs:
1418
examples:
1519
name: Multi Device testing

source/adapters/level_zero/v2/usm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ makePool(umf_disjoint_pool_params_handle_t *poolParams,
129129
}
130130

131131
auto [ret, provider] =
132-
umf::providerMakeUniqueFromOps(umfLevelZeroMemoryProviderOps(), &params);
132+
umf::providerMakeUniqueFromOps(umfLevelZeroMemoryProviderOps(), params);
133133
if (ret != UMF_RESULT_SUCCESS) {
134134
throw umf::umf2urResult(ret);
135135
}

0 commit comments

Comments
 (0)