Skip to content

Commit

Permalink
[SYCL][Graph] Fix E2E Filecheck regex
Browse files Browse the repository at this point in the history
CI is showing fails like https://github.com/intel/llvm/actions/runs/11969728548/job/33373742453?pr=15843
where the test is expecting output like:

```
.phKernelAlternatives = {0x12ed110, 0x1501ac0, 0x1502b60}
```

but the `SYCL_UR_TRACE` output is formed like:

```
.phKernelAlternatives = 0x23b4070 {0x25529d0, 0x2555000, 0x25560a0}
```

Update the Filecheck regex
  • Loading branch information
EwanC committed Nov 22, 2024
1 parent db59b4f commit 5026eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sycl/test-e2e/Graph/Update/dyn_cgf_different_arg_nums.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ int main() {
// CHECK: <--- urCommandBufferAppendKernelLaunchExp
// CHECK-SAME: .hKernel = [[KERNEL_HANDLE1]]
// CHECK-SAME: .numKernelAlternatives = 3
// CHECK-SAME: .phKernelAlternatives = {[[KERNEL_HANDLE2:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE3:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE4:[0-9a-fA-Fx]+]]}
// CHECK-SAME: .phKernelAlternatives = {{[0-9a-fA-Fx]* ?}}{[[KERNEL_HANDLE2:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE3:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE4:[0-9a-fA-Fx]+]]}
auto DynamicCG =
exp_ext::dynamic_command_group(Graph, {CGFA, CGFB, CGFC, CGFD});
auto DynamicCGNode = Graph.add(DynamicCG);
Expand Down

0 comments on commit 5026eef

Please sign in to comment.