1 // 2 // Copyright (c) 2022 The Khronos Group Inc. 3 // 4 // Licensed under the Apache License, Version 2.0 (the "License"); 5 // you may not use this file except in compliance with the License. 6 // You may obtain a copy of the License at 7 // 8 // http://www.apache.org/licenses/LICENSE-2.0 9 // 10 // Unless required by applicable law or agreed to in writing, software 11 // distributed under the License is distributed on an "AS IS" BASIS, 12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 // See the License for the specific language governing permissions and 14 // limitations under the License. 15 // 16 17 #include "harness/mt19937.h" 18 19 extern int test_vulkan_interop_buffer(cl_device_id device, cl_context context, 20 cl_command_queue queue, int num_elements); 21 extern int test_vulkan_interop_image(cl_device_id device, cl_context context, 22 cl_command_queue queue, int num_elements); 23 extern int test_consistency_external_buffer(cl_device_id device, 24 cl_context context, 25 cl_command_queue queue, 26 int num_elements); 27 extern int test_consistency_external_image(cl_device_id device, 28 cl_context context, 29 cl_command_queue queue, 30 int num_elements); 31 extern int test_consistency_external_semaphore(cl_device_id device, 32 cl_context context, 33 cl_command_queue queue, 34 int num_elements); 35 extern int test_platform_info(cl_device_id device, cl_context context, 36 cl_command_queue queue, int num_elements); 37 extern int test_device_info(cl_device_id device, cl_context context, 38 cl_command_queue queue, int num_elements); 39