/* * Copyright © 2012 Blaž Tomažič * * 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 retain_release-command-queue.c * * Test API functions: * * cl_int clRetainCommandQueue (cl_command_queue command_queue) * cl_int clReleaseCommandQueue (cl_command_queue command_queue) */ #include "piglit-framework-cl-api.h" PIGLIT_CL_API_TEST_CONFIG_BEGIN config.name = "clRetainCommandQueue and clReleaseCommandQueue"; config.version_min = 10; config.run_per_device = true; config.create_context = true; PIGLIT_CL_API_TEST_CONFIG_END 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) { int ref_count = 0; const int max_ref_count = 10; cl_int errNo; cl_uint* ref_count_ptr; /*** Normal usage ***/ cl_command_queue command_queue = clCreateCommandQueue(env->context->cl_ctx, env->device_id, 0, &errNo); if(!piglit_cl_check_error(errNo, CL_SUCCESS)){ fprintf(stderr, "Failed (error code: %s): Create a command queue.\n", piglit_cl_get_error_name(errNo)); return PIGLIT_FAIL; } ref_count_ptr = piglit_cl_get_command_queue_info(command_queue, CL_QUEUE_REFERENCE_COUNT); if(*ref_count_ptr != 1) { free(ref_count_ptr); fprintf(stderr, "CL_QUEUE_REFERENCE_COUNT should be 1 after creating command queue.\n"); return PIGLIT_FAIL; } free(ref_count_ptr); /* increase by two and decrease by one on each itreation */ for(ref_count = 1; ref_count < max_ref_count; ref_count++) { errNo = clRetainCommandQueue(command_queue); if(!piglit_cl_check_error(errNo, CL_SUCCESS)) { fprintf(stderr, "clRetainCommandQueue: Failed (error code: %s): Retain command queue.\n", piglit_cl_get_error_name(errNo)); return PIGLIT_FAIL; } errNo = clReleaseCommandQueue(command_queue); if(!piglit_cl_check_error(errNo, CL_SUCCESS)){ fprintf(stderr, "clReleaseCommandQueue: Failed (error code: %s): Release command queue.\n", piglit_cl_get_error_name(errNo)); return PIGLIT_FAIL; } errNo = clRetainCommandQueue(command_queue); if(!piglit_cl_check_error(errNo, CL_SUCCESS)){ fprintf(stderr, "clRetainCommandQueue: Failed (error code: %s): Retain command queue.\n", piglit_cl_get_error_name(errNo)); return PIGLIT_FAIL; } /* check internal value of reference count */ ref_count_ptr = piglit_cl_get_command_queue_info(command_queue, CL_QUEUE_REFERENCE_COUNT); if(*ref_count_ptr != (ref_count+1)) { free(ref_count_ptr); fprintf(stderr, "CL_QUEUE_REFERENCE_COUNT is not changing accordingly.\n"); return PIGLIT_FAIL; } free(ref_count_ptr); } /* Decrease reference count to 0 */ for(ref_count = max_ref_count; ref_count > 0; ref_count--) { errNo = clReleaseCommandQueue(command_queue); if(!piglit_cl_check_error(errNo, CL_SUCCESS)){ fprintf(stderr, "clReleaseCommandQueue: Failed (error code: %s): Release command queue.\n", piglit_cl_get_error_name(errNo)); return PIGLIT_FAIL; } /* check internal value of reference count */ if(ref_count > 1) { ref_count_ptr = piglit_cl_get_command_queue_info(command_queue, CL_QUEUE_REFERENCE_COUNT); if(*ref_count_ptr != (ref_count-1)) { free(ref_count_ptr); fprintf(stderr, "CL_QUEUE_REFERENCE_COUNT is not changing accordingly.\n"); return PIGLIT_FAIL; } free(ref_count_ptr); } } return PIGLIT_PASS; }