// // Copyright (c) 2016-2023 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 "testBase.h" #include "types.hpp" template int test_undef(cl_device_id deviceID, cl_context context, cl_command_queue queue, const char *name) { if(std::string(name).find("double") != std::string::npos) { if(!is_extension_available(deviceID, "cl_khr_fp64")) { log_info("Extension cl_khr_fp64 not supported; skipping double tests.\n"); return 0; } } int num = (int)(1 << 10); cl_int err = CL_SUCCESS; clProgramWrapper prog; err = get_program_with_il(prog, deviceID, context, name); SPIRV_CHECK_ERROR(err, "Failed to build program"); clKernelWrapper kernel = clCreateKernel(prog, name, &err); SPIRV_CHECK_ERROR(err, "Failed to create kernel"); size_t bytes = num * sizeof(T); clMemWrapper mem = clCreateBuffer(context, CL_MEM_READ_WRITE, bytes, NULL, &err); SPIRV_CHECK_ERROR(err, "Failed to create buffer"); err = clSetKernelArg(kernel, 0, sizeof(cl_mem), &mem); SPIRV_CHECK_ERROR(err, "Failed to set kernel argument"); size_t global = num; err = clEnqueueNDRangeKernel(queue, kernel, 1, NULL, &global, NULL, 0, NULL, NULL); SPIRV_CHECK_ERROR(err, "Failed to enqueue kernel"); std::vector host(num); err = clEnqueueReadBuffer(queue, mem, CL_TRUE, 0, bytes, &host[0], 0, NULL, NULL); SPIRV_CHECK_ERROR(err, "Failed to copy from cl_buffer"); return 0; } #define TEST_UNDEF(NAME, TYPE) \ REGISTER_TEST(op_undef_##NAME##_simple) \ { \ return test_undef(device, context, queue, \ "undef_" #NAME "_simple"); \ } // Boolean tests TEST_UNDEF(true , cl_int ) TEST_UNDEF(false , cl_int ) // Integer tests TEST_UNDEF(int , cl_int ) TEST_UNDEF(uint , cl_uint ) TEST_UNDEF(char , cl_char ) TEST_UNDEF(uchar , cl_uchar) TEST_UNDEF(ushort, cl_ushort) TEST_UNDEF(long , cl_long ) TEST_UNDEF(ulong , cl_ulong) #ifdef __GNUC__ // std::vector is causing compilation errors on GCC 5.3 (works on gcc 4.8) // Needs further investigation TEST_UNDEF(short , int16_t ) #else TEST_UNDEF(short , cl_short) #endif // Float tests TEST_UNDEF(float , cl_float) TEST_UNDEF(double, cl_double) TEST_UNDEF(int4 , cl_int4) TEST_UNDEF(int3 , cl_int3) REGISTER_TEST(op_undef_struct_int_float_simple) { typedef AbstractStruct2 CustomType; return test_undef(device, context, queue, "undef_struct_int_float_simple"); } REGISTER_TEST(op_undef_struct_int_char_simple) { typedef AbstractStruct2 CustomType; return test_undef(device, context, queue, "undef_struct_int_char_simple"); } REGISTER_TEST(op_undef_struct_struct_simple) { typedef AbstractStruct2 CustomType1; typedef AbstractStruct2 CustomType2; return test_undef(device, context, queue, "undef_struct_struct_simple"); } REGISTER_TEST(op_undef_half_simple) { PASSIVE_REQUIRE_FP16_SUPPORT(device); return test_undef(device, context, queue, "undef_half_simple"); }