diff options
author | Serge Martin <edb+piglit@sigluy.net> | 2015-09-27 17:06:17 +0200 |
---|---|---|
committer | Serge Martin <edb+piglit@sigluy.net> | 2015-09-30 10:57:18 +0200 |
commit | adbde28f2447515dc09808115b9f62ca7ff0c0bc (patch) | |
tree | 0d1aa4f87b0edd8e5d1007bb11f7f2dfb18238db /tests | |
parent | 1678b3b8d22f73406d09284c868aeea150b90afc (diff) |
cl: add clEnqueueMigrateMemObjects
v2: (Jan Vesely comments)
Remove extra whitespace
Single flag test cases
Reviewed-by: Jan Vesely <jan.vesely@rutgers.edu>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cl.py | 1 | ||||
-rw-r--r-- | tests/cl/api/CMakeLists.cl.txt | 1 | ||||
-rw-r--r-- | tests/cl/api/enqueue-migrate-mem-objects.c | 244 |
3 files changed, 246 insertions, 0 deletions
diff --git a/tests/cl.py b/tests/cl.py index 161558b2c..046aa8737 100644 --- a/tests/cl.py +++ b/tests/cl.py @@ -59,6 +59,7 @@ with profile.group_manager(PiglitCLTest, 'api') as g: g(['cl-api-enqueue-read_write-buffer'], 'clEnqueueReadBuffer and clEnqueueWriteBuffer') g(['cl-api-enqueue-fill-buffer'], 'clEnqueueFillBuffer') + g(['cl-api-enqueue-migrate-mem-objects'], 'clEnqueueMigrateMemObjects') g(['cl-api-get-mem-object-info'], 'clGetMemObjectInfo') g(['cl-api-get-image-info'], 'clGetImageInfo') g(['cl-api-retain_release-mem-object'], diff --git a/tests/cl/api/CMakeLists.cl.txt b/tests/cl/api/CMakeLists.cl.txt index 4a90c58d7..4de676388 100644 --- a/tests/cl/api/CMakeLists.cl.txt +++ b/tests/cl/api/CMakeLists.cl.txt @@ -22,6 +22,7 @@ piglit_cl_add_api_test (enqueue-map-buffer enqueue-map-buffer.c) piglit_cl_add_api_test (enqueue-copy-buffer-rect enqueue-copy-buffer-rect.c) piglit_cl_add_api_test (enqueue-read_write-buffer enqueue-read_write-buffer.c) piglit_cl_add_api_test (enqueue-fill-buffer enqueue-fill-buffer.c) +piglit_cl_add_api_test (enqueue-migrate-mem-objects enqueue-migrate-mem-objects.c) piglit_cl_add_api_test (retain_release-mem-object retain_release-mem-object.c) piglit_cl_add_api_test (get-mem-object-info get-mem-object-info.c) piglit_cl_add_api_test (get-image-info get-image-info.c) diff --git a/tests/cl/api/enqueue-migrate-mem-objects.c b/tests/cl/api/enqueue-migrate-mem-objects.c new file mode 100644 index 000000000..f964360b3 --- /dev/null +++ b/tests/cl/api/enqueue-migrate-mem-objects.c @@ -0,0 +1,244 @@ +/* + * Copyright © 2015 Serge Martin <edb+piglit@sigluy.net> + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + */ + +/** + * @file enqueue-migrate-mem-objects.c + * + * Test API function: + * + * cl_int + * clEnqueueMigrateMemObjects(cl_command_queue command_queue, + * cl_uint num_mem_objects, + * const cl_mem *mem_objects, + * cl_mem_migration_flags flags, + * cl_uint num_events_in_wait_list, + * const cl_event *event_wait_list, + * cl_event *event) + */ + +#include "piglit-framework-cl-api.h" + + +PIGLIT_CL_API_TEST_CONFIG_BEGIN + + config.name = "clEnqueueMigrateMemObjects"; + config.version_min = 12; + + config.run_per_platform = true; + config.create_context = true; + +PIGLIT_CL_API_TEST_CONFIG_END + + +#if defined(CL_VERSION_1_2) +static bool +test(cl_command_queue queue, cl_uint num_mem_objects, + const cl_mem *mem_objects, cl_mem_migration_flags flags, + cl_uint num_events_in_wait_list, const cl_event *event_wait_list, + cl_event *event, + cl_int expected_error, enum piglit_result* result, + const char* test_str) { + cl_int errNo; + + errNo = clEnqueueMigrateMemObjects(queue, num_mem_objects, + mem_objects, flags, + num_events_in_wait_list, + event_wait_list, + event); + + if(!piglit_cl_check_error(errNo, expected_error)) { + fprintf(stderr, "Failed (error code: %s): %s.\n", + piglit_cl_get_error_name(errNo), test_str); + piglit_merge_result(result, PIGLIT_FAIL); + return false; + } + + return true; +} +#endif + +enum piglit_result +piglit_cl_test(const int argc, + const char **argv, + const struct piglit_cl_api_test_config* config, + const struct piglit_cl_api_test_env* env) +{ +#if defined(CL_VERSION_1_2) + enum piglit_result result = PIGLIT_PASS; + cl_mem device_buffer; + cl_mem invalid_buffer = NULL; + cl_command_queue queue; + cl_event event; + int i; + +/*** Normal usage ***/ + device_buffer = piglit_cl_create_buffer(env->context, + CL_MEM_READ_WRITE| + CL_MEM_ALLOC_HOST_PTR, 32); + + for(i = 0; i < env->context->num_devices; ++i) { + fprintf(stderr, "Testing on device %d\n", i); + queue = env->context->command_queues[i]; + if (!test(queue, 1, &device_buffer, 0, + 0, NULL, NULL, + CL_SUCCESS, &result, "Migrating the buffer")) { + return PIGLIT_FAIL; + } + + if (!test(queue, 1, &device_buffer, + CL_MIGRATE_MEM_OBJECT_HOST| + CL_MIGRATE_MEM_OBJECT_CONTENT_UNDEFINED, + 0, NULL, NULL, + CL_SUCCESS, &result, + "Migrating the buffer with flags CL_MIGRATE_MEM_OBJECT_HOST|CL_MIGRATE_MEM_OBJECT_CONTENT_UNDEFINED")) { + return PIGLIT_FAIL; + } + + if (!test(queue, 1, &device_buffer, + CL_MIGRATE_MEM_OBJECT_CONTENT_UNDEFINED, + 0, NULL, NULL, + CL_SUCCESS, &result, + "Migrating the buffer with flag CL_MIGRATE_MEM_OBJECT_CONTENT_UNDEFINED")) { + return PIGLIT_FAIL; + } + + if (!test(queue, 1, &device_buffer, + CL_MIGRATE_MEM_OBJECT_HOST, + 0, NULL, NULL, + CL_SUCCESS, &result, + "Migrating the buffer with flag CL_MIGRATE_MEM_OBJECT_HOST")) { + return PIGLIT_FAIL; + } + } + +/*** Errors ***/ + + /* + * CL_INVALID_COMMAND_QUEUE if command_queue is not a valid command-queue. + */ + test(NULL, 1, &device_buffer, 0, + 0, NULL, NULL, + CL_INVALID_COMMAND_QUEUE, &result, + "CL_INVALID_COMMAND_QUEUE if command_queue is not a valid command-queue"); + + /* + * CL_INVALID_CONTEXT if the context associated with command_queue and + * buffer are not the same or if the context associated with command_queue + * and events in event_wait_list are not the same. + */ + { + piglit_cl_context context; + cl_int err; + context = piglit_cl_create_context(env->platform_id, + env->context->device_ids, 1); + if (context) { + test(context->command_queues[0], 1, &device_buffer, 0, + 0, NULL, NULL, + CL_INVALID_CONTEXT, &result, + "CL_INVALID_CONTEXT if the context associated with command_queue and buffer are not the same"); + + event = clCreateUserEvent(context->cl_ctx, &err); + if (err == CL_SUCCESS) { + err = clSetUserEventStatus(event, CL_COMPLETE); + if (err == CL_SUCCESS) { + test(queue, 1, &device_buffer, 0, + 1, &event, NULL, + CL_INVALID_CONTEXT, &result, + "CL_INVALID_CONTEXT if the context associated with command_queue and events in event_wait_list are not the same"); + } else { + fprintf(stderr, "Could not set event status.\n"); + piglit_merge_result(&result, PIGLIT_WARN); + } + clReleaseEvent(event); + } else { + fprintf(stderr, "Could not create user event.\n"); + piglit_merge_result(&result, PIGLIT_WARN); + } + + piglit_cl_release_context(context); + } else { + fprintf(stderr, "Could not test triggering CL_INVALID_CONTEXT.\n"); + piglit_merge_result(&result, PIGLIT_WARN); + } + } + + /* + * CL_INVALID_MEM_OBJECT if any of the memory objects in mem_objs is not a + * valid memory object. + */ + test(queue, 1, &invalid_buffer, 0, + 0, NULL, NULL, + CL_INVALID_MEM_OBJECT, &result, + "CL_INVALID_MEM_OBJECT if any of the memory objects in mem_objs is not a valid memory object"); + + /* + * CL_INVALID_VALUE if num_mem_objects is zero or if mem_objects is NULL. + */ + test(queue, 0, &device_buffer, 0, + 0, NULL, NULL, + CL_INVALID_VALUE, &result, + "CL_INVALID_VALUE if num_mem_objects is zero"); + + test(queue, 1, NULL, 0, + 0, NULL, NULL, + CL_INVALID_VALUE, &result, + "CL_INVALID_VALUE if num_mem_objects is NULL"); + + /* + * CL_INVALID_VALUE if flags is not 0 or is not any of the values + * described in the table above. + */ + test(queue, 1, &device_buffer, -1, + 0, NULL, NULL, + CL_INVALID_VALUE, &result, + "CL_INVALID_VALUE if flags is not 0 or is not any of the values described in the table above"); + + /* + * CL_INVALID_EVENT_WAIT_LIST if event_wait_list is NULL and + * num_events_in_wait_list > 0, or event_wait_list is not NULL and + * num_events_in_wait_list is 0, or if event objects in event_wait_list + * are not valid events. + */ + event = NULL; + test(queue, 1, &device_buffer, 0, + 1, NULL, NULL, + CL_INVALID_EVENT_WAIT_LIST, &result, + "CL_INVALID_EVENT_WAIT_LIST if event_wait_list is NULL and num_events_in_wait_list > 0"); + + test(queue, 1, &device_buffer, 0, + 0, &event, 0, + CL_INVALID_EVENT_WAIT_LIST, &result, + "CL_INVALID_EVENT_WAIT_LIST if event_wait_list is not NULL and num_events_in_wait_list is 0"); + + test(queue, 1, &device_buffer, 0, + 1, &event, 0, + CL_INVALID_EVENT_WAIT_LIST, &result, + "CL_INVALID_EVENT_WAIT_LIST if event objects in event_wait_list are not valid events"); + + + clReleaseMemObject(device_buffer); + return result; +#else + return PIGLIT_SKIP; +#endif +} |