Skip to content

Commit 74d213d

Browse files
cppchedykbenzie
authored andcommitted
[SYCL][Bindless][E2E] fix missing scope when using equal_vec function (#13229)
* fix missed scope for `equal_vec` in Vulkan interop `mipmaps.cpp` test.
1 parent b125ddf commit 74d213d

File tree

1 file changed

+2
-1
lines changed
  • sycl/test-e2e/bindless_images/vulkan_interop

1 file changed

+2
-1
lines changed

sycl/test-e2e/bindless_images/vulkan_interop/mipmaps.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ bool run_sycl(sycl::range<NDims> globalSize, sycl::range<NDims> localSize,
200200
bindless_helpers::init_vector<DType, NChannels>(y +
201201
(width / 2 * x));
202202

203-
if (!equal_vec<DType, NChannels>(out[j + (width * i)], expected)) {
203+
if (!bindless_helpers::equal_vec<DType, NChannels>(out[j + (width * i)],
204+
expected)) {
204205
mismatch = true;
205206
validated = false;
206207
}

0 commit comments

Comments
 (0)