1*6467f958SSadaf Ebrahimi // 2*6467f958SSadaf Ebrahimi // Copyright (c) 2017 The Khronos Group Inc. 3*6467f958SSadaf Ebrahimi // 4*6467f958SSadaf Ebrahimi // Licensed under the Apache License, Version 2.0 (the "License"); 5*6467f958SSadaf Ebrahimi // you may not use this file except in compliance with the License. 6*6467f958SSadaf Ebrahimi // You may obtain a copy of the License at 7*6467f958SSadaf Ebrahimi // 8*6467f958SSadaf Ebrahimi // http://www.apache.org/licenses/LICENSE-2.0 9*6467f958SSadaf Ebrahimi // 10*6467f958SSadaf Ebrahimi // Unless required by applicable law or agreed to in writing, software 11*6467f958SSadaf Ebrahimi // distributed under the License is distributed on an "AS IS" BASIS, 12*6467f958SSadaf Ebrahimi // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*6467f958SSadaf Ebrahimi // See the License for the specific language governing permissions and 14*6467f958SSadaf Ebrahimi // limitations under the License. 15*6467f958SSadaf Ebrahimi // 16*6467f958SSadaf Ebrahimi #include "harness/errorHelpers.h" 17*6467f958SSadaf Ebrahimi #include "harness/kernelHelpers.h" 18*6467f958SSadaf Ebrahimi #include "harness/typeWrappers.h" 19*6467f958SSadaf Ebrahimi 20*6467f958SSadaf Ebrahimi extern int create_program_and_kernel(const char *source, const char *kernel_name, cl_program *program_ret, cl_kernel *kernel_ret); 21*6467f958SSadaf Ebrahimi 22*6467f958SSadaf Ebrahimi extern int test_geom_cross(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 23*6467f958SSadaf Ebrahimi extern int test_geom_dot(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 24*6467f958SSadaf Ebrahimi extern int test_geom_distance(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 25*6467f958SSadaf Ebrahimi extern int test_geom_fast_distance(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 26*6467f958SSadaf Ebrahimi extern int test_geom_length(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 27*6467f958SSadaf Ebrahimi extern int test_geom_fast_length(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 28*6467f958SSadaf Ebrahimi extern int test_geom_normalize(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 29*6467f958SSadaf Ebrahimi extern int test_geom_fast_normalize(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements); 30*6467f958SSadaf Ebrahimi 31*6467f958SSadaf Ebrahimi extern int test_geom_cross_double(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements, MTdata d); 32*6467f958SSadaf Ebrahimi extern int test_geom_dot_double(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements, MTdata d); 33*6467f958SSadaf Ebrahimi extern int test_geom_distance_double(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements, MTdata d); 34*6467f958SSadaf Ebrahimi extern int test_geom_length_double(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements, MTdata d); 35*6467f958SSadaf Ebrahimi extern int test_geom_normalize_double(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements, MTdata d); 36