mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Added negative test commandNDRangeKernel (#1936)
According to description https://github.com/KhronosGroup/OpenCL-CTS/issues/1668
This commit is contained in:
committed by
GitHub
parent
aa70c06d8f
commit
5093ce5be5
@@ -19,6 +19,7 @@ set(${MODULE_NAME}_SOURCES
|
||||
negative_command_buffer_finalize.cpp
|
||||
negative_command_buffer_retain_release.cpp
|
||||
negative_command_buffer_create.cpp
|
||||
negative_command_nd_range_kernel.cpp
|
||||
negative_command_buffer_get_info.cpp
|
||||
negative_command_buffer_enqueue.cpp
|
||||
)
|
||||
|
||||
@@ -75,6 +75,15 @@ test_definition test_list[] = {
|
||||
ADD_TEST(negative_create_command_buffer_queue_without_min_properties),
|
||||
ADD_TEST(
|
||||
negative_create_command_buffer_device_does_not_support_out_of_order_queue),
|
||||
ADD_TEST(negative_command_ndrange_queue_not_null),
|
||||
ADD_TEST(negative_command_ndrange_kernel_with_different_context),
|
||||
ADD_TEST(negative_command_ndrange_kernel_sync_points_null_or_num_zero),
|
||||
ADD_TEST(negative_command_ndrange_kernel_invalid_command_buffer),
|
||||
ADD_TEST(negative_command_ndrange_kernel_invalid_properties),
|
||||
ADD_TEST(negative_command_ndrange_kernel_command_buffer_finalized),
|
||||
ADD_TEST(negative_command_ndrange_kernel_mutable_handle_not_null),
|
||||
ADD_TEST(negative_command_ndrange_kernel_not_support_printf),
|
||||
ADD_TEST(negative_command_ndrange_kernel_with_enqueue_call),
|
||||
ADD_TEST(negative_get_command_buffer_info_invalid_command_buffer),
|
||||
ADD_TEST(negative_get_command_buffer_info_not_supported_param_name),
|
||||
ADD_TEST(negative_get_command_buffer_info_queues),
|
||||
|
||||
@@ -0,0 +1,523 @@
|
||||
//
|
||||
// Copyright (c) 2024 The Khronos Group Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
#include "basic_command_buffer.h"
|
||||
#include "procs.h"
|
||||
#include "harness/featureHelpers.h"
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
namespace {
|
||||
|
||||
// CL_INVALID_COMMAND_QUEUE if command_queue is not NULL.
|
||||
struct CommandNDRangeKernelQueueNotNull : public BasicCommandBufferTest
|
||||
{
|
||||
using BasicCommandBufferTest::BasicCommandBufferTest;
|
||||
|
||||
cl_int Run() override
|
||||
{
|
||||
cl_int error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, queue, nullptr, kernel, 1, nullptr, &num_elements,
|
||||
nullptr, 0, nullptr, nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_COMMAND_QUEUE,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_COMMAND_QUEUE",
|
||||
TEST_FAIL);
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
};
|
||||
|
||||
// CL_INVALID_CONTEXT if the context associated with command_queue,
|
||||
// command_buffer, and kernel are not the same.
|
||||
struct CommandNDRangeKernelKernelWithDifferentContext
|
||||
: public BasicCommandBufferTest
|
||||
{
|
||||
using BasicCommandBufferTest::BasicCommandBufferTest;
|
||||
|
||||
cl_int Run() override
|
||||
{
|
||||
cl_int error = CreateKernelWithDifferentContext();
|
||||
test_error(error, "Failed to create kernel");
|
||||
|
||||
error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, nullptr, kernel, 1, nullptr, &num_elements,
|
||||
nullptr, 0, nullptr, nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_CONTEXT,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_CONTEXT",
|
||||
TEST_FAIL);
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
|
||||
cl_int CreateKernelWithDifferentContext()
|
||||
{
|
||||
cl_int error = CL_SUCCESS;
|
||||
|
||||
new_context = clCreateContext(0, 1, &device, nullptr, nullptr, &error);
|
||||
test_error(error, "Failed to create context");
|
||||
|
||||
const char* kernel_str =
|
||||
R"(
|
||||
__kernel void copy(__global int* in, __global int* out, __global int* offset) {
|
||||
size_t id = get_global_id(0);
|
||||
int ind = offset[0] + id;
|
||||
out[ind] = in[ind];
|
||||
})";
|
||||
|
||||
error = create_single_kernel_helper_create_program(
|
||||
new_context, &program, 1, &kernel_str);
|
||||
test_error(error, "Failed to create program with source");
|
||||
|
||||
error = clBuildProgram(program, 1, &device, nullptr, nullptr, nullptr);
|
||||
test_error(error, "Failed to build program");
|
||||
|
||||
kernel = clCreateKernel(program, "copy", &error);
|
||||
test_error(error, "Failed to create copy kernel");
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
clContextWrapper new_context;
|
||||
};
|
||||
|
||||
// CL_INVALID_SYNC_POINT_WAIT_LIST_KHR if sync_point_wait_list is NULL and
|
||||
// num_sync_points_in_wait_list is > 0, or sync_point_wait_list is not NULL and
|
||||
// num_sync_points_in_wait_list is 0, or if synchronization-point objects in
|
||||
// sync_point_wait_list are not valid synchronization-points.
|
||||
struct CommandNDRangeKerneSyncPointsNullOrNumZero
|
||||
: public BasicCommandBufferTest
|
||||
{
|
||||
using BasicCommandBufferTest::BasicCommandBufferTest;
|
||||
|
||||
cl_int Run() override
|
||||
{
|
||||
cl_sync_point_khr invalid_point = 0;
|
||||
cl_sync_point_khr* invalid_sync_points[] = { &invalid_point };
|
||||
cl_int error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, nullptr, kernel, 0, nullptr, &num_elements,
|
||||
nullptr, 1, invalid_sync_points[0], nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_SYNC_POINT_WAIT_LIST_KHR,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_SYNC_POINT_WAIT_LIST_KHR",
|
||||
TEST_FAIL);
|
||||
|
||||
|
||||
error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, nullptr, kernel, 1, nullptr, &num_elements,
|
||||
nullptr, 1, nullptr, nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_SYNC_POINT_WAIT_LIST_KHR,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_SYNC_POINT_WAIT_LIST_KHR",
|
||||
TEST_FAIL);
|
||||
|
||||
|
||||
cl_sync_point_khr point;
|
||||
error = clCommandBarrierWithWaitListKHR(command_buffer, nullptr, 0,
|
||||
nullptr, &point, nullptr);
|
||||
test_error(error, "clCommandBarrierWithWaitListKHR failed");
|
||||
|
||||
cl_sync_point_khr* sync_points[] = { &point };
|
||||
error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, nullptr, kernel, 0, nullptr, &num_elements,
|
||||
nullptr, 0, sync_points[0], nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_SYNC_POINT_WAIT_LIST_KHR,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_SYNC_POINT_WAIT_LIST_KHR",
|
||||
TEST_FAIL);
|
||||
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
};
|
||||
|
||||
// CL_INVALID_COMMAND_BUFFER_KHR if command_buffer is not a valid
|
||||
// command-buffer.
|
||||
struct CommandNDRangeKernelInvalidCommandBuffer : public BasicCommandBufferTest
|
||||
{
|
||||
using BasicCommandBufferTest::BasicCommandBufferTest;
|
||||
|
||||
cl_int Run() override
|
||||
{
|
||||
cl_int error = clCommandNDRangeKernelKHR(
|
||||
nullptr, nullptr, nullptr, kernel, 1, nullptr, &num_elements,
|
||||
nullptr, 0, nullptr, nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_COMMAND_BUFFER_KHR,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_COMMAND_BUFFER_KHR",
|
||||
TEST_FAIL);
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
};
|
||||
|
||||
// CL_INVALID_VALUE if values specified in properties are not valid.
|
||||
struct CommandNDRangeKernelInvalidProperties : public BasicCommandBufferTest
|
||||
{
|
||||
using BasicCommandBufferTest::BasicCommandBufferTest;
|
||||
|
||||
cl_int Run() override
|
||||
{
|
||||
cl_ndrange_kernel_command_properties_khr empty_properties =
|
||||
~cl_ndrange_kernel_command_properties_khr(0);
|
||||
|
||||
cl_int error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, &empty_properties, kernel, 1, nullptr,
|
||||
&num_elements, nullptr, 0, nullptr, nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_VALUE,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_VALUE",
|
||||
TEST_FAIL);
|
||||
|
||||
cl_ndrange_kernel_command_properties_khr props_invalid[3] = {
|
||||
CL_MUTABLE_DISPATCH_UPDATABLE_FIELDS_KHR,
|
||||
CL_MEM_USE_CACHED_CPU_MEMORY_IMG, 1
|
||||
};
|
||||
|
||||
error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, props_invalid, kernel, 1, nullptr,
|
||||
&num_elements, nullptr, 0, nullptr, nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_VALUE,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_VALUE",
|
||||
TEST_FAIL);
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
};
|
||||
|
||||
// CL_INVALID_OPERATION if command_buffer has been finalized.
|
||||
struct CommandNDRangeKernelCommandBufferFinalized
|
||||
: public BasicCommandBufferTest
|
||||
{
|
||||
using BasicCommandBufferTest::BasicCommandBufferTest;
|
||||
|
||||
cl_int Run() override
|
||||
{
|
||||
cl_int error = clFinalizeCommandBufferKHR(command_buffer);
|
||||
test_error(error, "clFinalizeCommandBufferKHR failed");
|
||||
|
||||
error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, nullptr, kernel, 1, nullptr, &num_elements,
|
||||
nullptr, 0, nullptr, nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_OPERATION,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_OPERATION",
|
||||
TEST_FAIL);
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
};
|
||||
|
||||
// CL_INVALID_VALUE if mutable_handle is not NULL.
|
||||
struct CommandNDRangeKernelMutableHandleNotNull : public BasicCommandBufferTest
|
||||
{
|
||||
using BasicCommandBufferTest::BasicCommandBufferTest;
|
||||
|
||||
bool Skip() override
|
||||
{
|
||||
return BasicCommandBufferTest::Skip()
|
||||
|| is_extension_available(device,
|
||||
"cl_khr_command_buffer_mutable_dispatch");
|
||||
}
|
||||
|
||||
cl_int Run() override
|
||||
{
|
||||
cl_mutable_command_khr mutable_handle;
|
||||
|
||||
cl_int error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, nullptr, kernel, 1, nullptr, &num_elements,
|
||||
nullptr, 0, nullptr, nullptr, &mutable_handle);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_VALUE,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_VALUE",
|
||||
TEST_FAIL);
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
};
|
||||
|
||||
// CL_INVALID_OPERATION if the device associated with command_queue does not
|
||||
// support CL_COMMAND_BUFFER_CAPABILITY_KERNEL_PRINTF_KHR and kernel contains a
|
||||
// printf call.
|
||||
struct CommandNDRangeKernelNotSupportPrintf : public BasicCommandBufferTest
|
||||
{
|
||||
using BasicCommandBufferTest::BasicCommandBufferTest;
|
||||
|
||||
bool Skip() override
|
||||
{
|
||||
cl_device_command_buffer_capabilities_khr capabilities;
|
||||
cl_int error =
|
||||
clGetDeviceInfo(device, CL_DEVICE_COMMAND_BUFFER_CAPABILITIES_KHR,
|
||||
sizeof(capabilities), &capabilities, NULL);
|
||||
test_error(error,
|
||||
"Unable to query CL_DEVICE_COMMAND_BUFFER_CAPABILITIES_KHR");
|
||||
|
||||
bool device_does_not_support_printf =
|
||||
(capabilities & CL_COMMAND_BUFFER_CAPABILITY_KERNEL_PRINTF_KHR)
|
||||
== 0;
|
||||
|
||||
return !device_does_not_support_printf;
|
||||
}
|
||||
|
||||
cl_int SetUpKernel() override
|
||||
{
|
||||
cl_int error = CL_SUCCESS;
|
||||
|
||||
const char* kernel_str =
|
||||
R"(
|
||||
__kernel void printf_kernel() {
|
||||
printf("Hello World\n");
|
||||
}
|
||||
)";
|
||||
|
||||
error = build_program_create_kernel_helper(context, &program, &kernel,
|
||||
1, &kernel_str,
|
||||
"printf_kernel", nullptr);
|
||||
test_error(error, "build_program_create_kernel_helper failed");
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
|
||||
cl_int SetUp(int elements) override
|
||||
{
|
||||
cl_int error = init_extension_functions();
|
||||
if (error != CL_SUCCESS)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
|
||||
if (elements <= 0)
|
||||
{
|
||||
return CL_INVALID_VALUE;
|
||||
}
|
||||
num_elements = static_cast<size_t>(elements);
|
||||
|
||||
error = SetUpKernel();
|
||||
test_error(error, "SetUpKernel failed");
|
||||
|
||||
command_buffer = clCreateCommandBufferKHR(1, &queue, nullptr, &error);
|
||||
test_error(error, "clCreateCommandBufferKHR failed");
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
|
||||
cl_int Run() override
|
||||
{
|
||||
cl_int error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, nullptr, kernel, 1, nullptr, &num_elements,
|
||||
nullptr, 0, nullptr, nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_OPERATION,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_OPERATION",
|
||||
TEST_FAIL);
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
};
|
||||
|
||||
// CL_INVALID_OPERATION if the device associated with command_queue does not
|
||||
// support CL_COMMAND_BUFFER_CAPABILITY_DEVICE_SIDE_ENQUEUE_KHR and kernel
|
||||
// contains a kernel-enqueue call.
|
||||
struct CommandNDRangeKernelWithKernelEnqueueCall : public BasicCommandBufferTest
|
||||
{
|
||||
using BasicCommandBufferTest::BasicCommandBufferTest;
|
||||
|
||||
bool Skip() override
|
||||
{
|
||||
bool has_device_enqueue = false;
|
||||
bool cl_version_2_0_or_higher = false;
|
||||
|
||||
OpenCLCFeatures features;
|
||||
get_device_cl_c_features(device, features);
|
||||
|
||||
const Version clc_version = get_device_latest_cl_c_version(device);
|
||||
if (clc_version >= Version(3, 0))
|
||||
{
|
||||
cl_std = "-cl-std=CL3.0";
|
||||
has_device_enqueue = features.supports__opencl_c_device_enqueue;
|
||||
cl_version_2_0_or_higher = true;
|
||||
}
|
||||
else if (clc_version >= Version(2, 0) && clc_version < Version(3, 0))
|
||||
{
|
||||
cl_std = "-cl-std=CL2.0";
|
||||
has_device_enqueue = features.supports__opencl_c_device_enqueue;
|
||||
cl_version_2_0_or_higher = true;
|
||||
}
|
||||
|
||||
cl_device_command_buffer_capabilities_khr capabilities;
|
||||
cl_int error =
|
||||
clGetDeviceInfo(device, CL_DEVICE_COMMAND_BUFFER_CAPABILITIES_KHR,
|
||||
sizeof(capabilities), &capabilities, NULL);
|
||||
test_error(error,
|
||||
"Unable to query CL_DEVICE_COMMAND_BUFFER_CAPABILITIES_KHR");
|
||||
|
||||
bool device_does_support_enqueue_call =
|
||||
(capabilities
|
||||
& CL_COMMAND_BUFFER_CAPABILITY_DEVICE_SIDE_ENQUEUE_KHR)
|
||||
!= 0;
|
||||
|
||||
if (!cl_version_2_0_or_higher || !has_device_enqueue) return true;
|
||||
return device_does_support_enqueue_call;
|
||||
}
|
||||
|
||||
cl_int SetUpKernel() override
|
||||
{
|
||||
cl_int error = CL_SUCCESS;
|
||||
|
||||
const char* kernel_str =
|
||||
R"(
|
||||
__kernel void enqueue_call_func() {
|
||||
}
|
||||
|
||||
__kernel void enqueue_call_kernel() {
|
||||
queue_t def_q = get_default_queue();
|
||||
ndrange_t ndrange = ndrange_1D(1);
|
||||
enqueue_kernel(def_q, CLK_ENQUEUE_FLAGS_WAIT_KERNEL, ndrange,
|
||||
^{enqueue_call_func();});
|
||||
}
|
||||
)";
|
||||
std::string build_options = std::string(" ") + cl_std;
|
||||
|
||||
error = build_program_create_kernel_helper(
|
||||
context, &program, &kernel, 1, &kernel_str, "enqueue_call_kernel",
|
||||
build_options.c_str());
|
||||
test_error(error, "build_program_create_kernel_helper failed");
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
|
||||
cl_int SetUp(int elements) override
|
||||
{
|
||||
cl_int error = init_extension_functions();
|
||||
if (error != CL_SUCCESS)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
|
||||
if (elements <= 0)
|
||||
{
|
||||
return CL_INVALID_VALUE;
|
||||
}
|
||||
num_elements = static_cast<size_t>(elements);
|
||||
|
||||
error = SetUpKernel();
|
||||
test_error(error, "SetUpKernel failed");
|
||||
|
||||
command_buffer = clCreateCommandBufferKHR(1, &queue, nullptr, &error);
|
||||
test_error(error, "clCreateCommandBufferKHR failed");
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
|
||||
cl_int Run() override
|
||||
{
|
||||
cl_int error = clCommandNDRangeKernelKHR(
|
||||
command_buffer, nullptr, nullptr, kernel, 1, nullptr, &num_elements,
|
||||
nullptr, 0, nullptr, nullptr, nullptr);
|
||||
|
||||
test_failure_error_ret(error, CL_INVALID_OPERATION,
|
||||
"clCommandNDRangeKernelKHR should return "
|
||||
"CL_INVALID_OPERATION",
|
||||
TEST_FAIL);
|
||||
|
||||
return CL_SUCCESS;
|
||||
}
|
||||
std::string cl_std = "";
|
||||
};
|
||||
};
|
||||
|
||||
int test_negative_command_ndrange_queue_not_null(cl_device_id device,
|
||||
cl_context context,
|
||||
cl_command_queue queue,
|
||||
int num_elements)
|
||||
{
|
||||
return MakeAndRunTest<CommandNDRangeKernelQueueNotNull>(
|
||||
device, context, queue, num_elements);
|
||||
}
|
||||
|
||||
int test_negative_command_ndrange_kernel_with_different_context(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements)
|
||||
{
|
||||
return MakeAndRunTest<CommandNDRangeKernelKernelWithDifferentContext>(
|
||||
device, context, queue, num_elements);
|
||||
}
|
||||
|
||||
int test_negative_command_ndrange_kernel_sync_points_null_or_num_zero(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements)
|
||||
{
|
||||
return MakeAndRunTest<CommandNDRangeKerneSyncPointsNullOrNumZero>(
|
||||
device, context, queue, num_elements);
|
||||
}
|
||||
|
||||
int test_negative_command_ndrange_kernel_invalid_command_buffer(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements)
|
||||
{
|
||||
return MakeAndRunTest<CommandNDRangeKernelInvalidCommandBuffer>(
|
||||
device, context, queue, num_elements);
|
||||
}
|
||||
|
||||
int test_negative_command_ndrange_kernel_invalid_properties(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements)
|
||||
{
|
||||
return MakeAndRunTest<CommandNDRangeKernelInvalidProperties>(
|
||||
device, context, queue, num_elements);
|
||||
}
|
||||
|
||||
int test_negative_command_ndrange_kernel_command_buffer_finalized(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements)
|
||||
{
|
||||
return MakeAndRunTest<CommandNDRangeKernelCommandBufferFinalized>(
|
||||
device, context, queue, num_elements);
|
||||
}
|
||||
|
||||
int test_negative_command_ndrange_kernel_mutable_handle_not_null(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements)
|
||||
{
|
||||
return MakeAndRunTest<CommandNDRangeKernelMutableHandleNotNull>(
|
||||
device, context, queue, num_elements);
|
||||
}
|
||||
|
||||
int test_negative_command_ndrange_kernel_not_support_printf(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements)
|
||||
{
|
||||
return MakeAndRunTest<CommandNDRangeKernelNotSupportPrintf>(
|
||||
device, context, queue, num_elements);
|
||||
}
|
||||
|
||||
int test_negative_command_ndrange_kernel_with_enqueue_call(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements)
|
||||
{
|
||||
return MakeAndRunTest<CommandNDRangeKernelWithKernelEnqueueCall>(
|
||||
device, context, queue, num_elements);
|
||||
}
|
||||
@@ -172,6 +172,34 @@ extern int
|
||||
test_negative_create_command_buffer_device_does_not_support_out_of_order_queue(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_command_ndrange_queue_not_null(cl_device_id device,
|
||||
cl_context context,
|
||||
cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_command_ndrange_kernel_with_different_context(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_command_ndrange_kernel_sync_points_null_or_num_zero(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_command_ndrange_kernel_invalid_command_buffer(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_command_ndrange_kernel_invalid_properties(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_command_ndrange_kernel_command_buffer_finalized(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_command_ndrange_kernel_mutable_handle_not_null(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_command_ndrange_kernel_not_support_printf(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_command_ndrange_kernel_with_enqueue_call(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
extern int test_negative_get_command_buffer_info_invalid_command_buffer(
|
||||
cl_device_id device, cl_context context, cl_command_queue queue,
|
||||
int num_elements);
|
||||
|
||||
Reference in New Issue
Block a user