Skip to content

Commit

Permalink
correction related to code review
Browse files Browse the repository at this point in the history
  • Loading branch information
shajder committed Apr 22, 2024
1 parent 1dfd7fd commit 9bcb122
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test_conformance/extensions/cl_khr_semaphore/test_semaphores.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static int semaphore_cross_queue_helper(cl_device_id deviceID,

if (!is_extension_available(deviceID, "cl_khr_semaphore"))
{
log_info("cl_khr_semaphore is not supported on this platoform. "
log_info("cl_khr_semaphore is not supported on this platform. "
"Skipping test.\n");
return TEST_SKIPPED_ITSELF;
}
Expand Down Expand Up @@ -142,7 +142,7 @@ int test_semaphores_simple_1(cl_device_id deviceID, cl_context context,

if (!is_extension_available(deviceID, "cl_khr_semaphore"))
{
log_info("cl_khr_semaphore is not supported on this platoform. "
log_info("cl_khr_semaphore is not supported on this platform. "
"Skipping test.\n");
return TEST_SKIPPED_ITSELF;
}
Expand Down Expand Up @@ -204,7 +204,7 @@ int test_semaphores_simple_2(cl_device_id deviceID, cl_context context,

if (!is_extension_available(deviceID, "cl_khr_semaphore"))
{
log_info("cl_khr_semaphore is not supported on this platoform. "
log_info("cl_khr_semaphore is not supported on this platform. "
"Skipping test.\n");
return TEST_SKIPPED_ITSELF;
}
Expand Down Expand Up @@ -296,7 +296,7 @@ int test_semaphores_reuse(cl_device_id deviceID, cl_context context,

if (!is_extension_available(deviceID, "cl_khr_semaphore"))
{
log_info("cl_khr_semaphore is not supported on this platoform. "
log_info("cl_khr_semaphore is not supported on this platform. "
"Skipping test.\n");
return TEST_SKIPPED_ITSELF;
}
Expand Down Expand Up @@ -439,7 +439,7 @@ int test_semaphores_multi_signal(cl_device_id deviceID, cl_context context,

if (!is_extension_available(deviceID, "cl_khr_semaphore"))
{
log_info("cl_khr_semaphore is not supported on this platoform. "
log_info("cl_khr_semaphore is not supported on this platform. "
"Skipping test.\n");
return TEST_SKIPPED_ITSELF;
}
Expand Down Expand Up @@ -515,7 +515,7 @@ int test_semaphores_multi_wait(cl_device_id deviceID, cl_context context,

if (!is_extension_available(deviceID, "cl_khr_semaphore"))
{
log_info("cl_khr_semaphore is not supported on this platoform. "
log_info("cl_khr_semaphore is not supported on this platform. "
"Skipping test.\n");
return TEST_SKIPPED_ITSELF;
}
Expand Down Expand Up @@ -621,7 +621,7 @@ int test_semaphores_queries(cl_device_id deviceID, cl_context context,
if (deviceID == capable_device
&& !is_extension_available(capable_device, "cl_khr_semaphore"))
{
log_info("cl_khr_semaphore is not supported on this platoform. "
log_info("cl_khr_semaphore is not supported on this platform. "
"Skipping test.\n");
return TEST_SKIPPED_ITSELF;
}
Expand Down Expand Up @@ -696,15 +696,15 @@ int test_semaphores_import_export_fd(cl_device_id deviceID, cl_context context,

if (!is_extension_available(deviceID, "cl_khr_semaphore"))
{
log_info("cl_khr_semaphore is not supported on this platoform. "
log_info("cl_khr_semaphore is not supported on this platform. "
"Skipping test.\n");
return TEST_SKIPPED_ITSELF;
}

if (!is_extension_available(deviceID, "cl_khr_external_semaphore_sync_fd"))
{
log_info("cl_khr_external_semaphore_sync_fd is not supported on this "
"platoform. Skipping test.\n");
"platform. Skipping test.\n");
return TEST_SKIPPED_ITSELF;
}

Expand Down

0 comments on commit 9bcb122

Please sign in to comment.