1 //
2 // Copyright (c) 2017 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 #include "testBase.h"
17 #include "harness/mt19937.h"
18 
19 
20 extern int test_buffers( cl_device_id device, cl_context context, cl_command_queue queue, int num_elements );
21 extern int test_buffers_getinfo( cl_device_id device, cl_context context, cl_command_queue queue, int numElements );
22 extern int test_images_create( cl_device_id device, cl_context context, cl_command_queue queue, int num_elements );
23 extern int test_images_read( cl_device_id device, cl_context context, cl_command_queue queue, int num_elements );
24 extern int test_images_2D_getinfo( cl_device_id device, cl_context context, cl_command_queue queue, int numElements );
25 extern int test_images_read_cube( cl_device_id device, cl_context context, cl_command_queue queue, int num_elements );
26 extern int test_images_cube_getinfo( cl_device_id device, cl_context context, cl_command_queue queue, int numElements );
27 extern int test_images_read_3D( cl_device_id device, cl_context context, cl_command_queue queue, int num_elements );
28 extern int test_images_3D_getinfo( cl_device_id device, cl_context context, cl_command_queue queue, int numElements );
29 extern int test_images_write( cl_device_id device, cl_context context, cl_command_queue queue, int num_elements );
30 extern int test_images_write_cube( cl_device_id device, cl_context context, cl_command_queue queue, int num_elements );
31 extern int test_renderbuffer_read( cl_device_id device, cl_context context, cl_command_queue queue, int num_elements );
32 extern int test_renderbuffer_write( cl_device_id device, cl_context context, cl_command_queue queue, int num_elements );
33 extern int test_renderbuffer_getinfo( cl_device_id device, cl_context context, cl_command_queue queue, int numElements );
34 extern int test_fence_sync( cl_device_id device, cl_context context, cl_command_queue queue, int numElements );
35 
36