Skip to content

Commit

Permalink
Merge pull request #1989 from IntelPython/fix-compilation-error-of-te…
Browse files Browse the repository at this point in the history
…st-sycl-device-interface-by-clang-20

Correct mistake in the test that causes compilation error
  • Loading branch information
ndgrigorian authored Feb 11, 2025
2 parents 180daa5 + 1e654d1 commit a9bba0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsyclinterface/tests/test_sycl_device_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ TEST_P(TestDPCTLSyclDeviceInterface, ChkGetSubGroupSizes)
else
EXPECT_TRUE(sg_sizes_len > 0);
for (size_t i = 0; i < sg_sizes_len; ++i) {
EXPECT_TRUE(sg_sizes > 0);
EXPECT_TRUE(sg_sizes[i] > 0);
}
EXPECT_NO_FATAL_FAILURE(DPCTLSize_t_Array_Delete(sg_sizes));
}
Expand Down

0 comments on commit a9bba0b

Please sign in to comment.