We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7b5c0d commit 8cc087eCopy full SHA for 8cc087e
sycl/unittests/pi/PlatformTest.cpp
@@ -20,7 +20,7 @@ class PlatformTest : public ::testing::Test {
20
constexpr static size_t out_string_size =
21
8192u; // Using values from OpenCL CTS clGetPlatforms test
22
23
- PlatformTest() { detail::pi::piInitialize(); }
+ PlatformTest() { detail::pi::initialize(); }
24
25
~PlatformTest() = default;
26
};
@@ -32,7 +32,7 @@ TEST_F(PlatformTest, piPlatformsGet) {
32
PI_SUCCESS)
33
<< "piPlatformsGet failed";
34
35
- ASSERT_GT(platformCount, 0) << "piPlatformsGet found 0 platforms.\n";
+ ASSERT_GT(platformCount, 0u) << "piPlatformsGet found 0 platforms.\n";
36
37
std::vector<pi_platform> platforms(platformCount);
38
0 commit comments