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/testHarness.h" 17*6467f958SSadaf Ebrahimi #include "harness/kernelHelpers.h" 18*6467f958SSadaf Ebrahimi #include "harness/errorHelpers.h" 19*6467f958SSadaf Ebrahimi #include "harness/conversions.h" 20*6467f958SSadaf Ebrahimi #include "harness/mt19937.h" 21*6467f958SSadaf Ebrahimi 22*6467f958SSadaf Ebrahimi #define kVectorSizeCount 5 23*6467f958SSadaf Ebrahimi #define kStrangeVectorSizeCount 1 24*6467f958SSadaf Ebrahimi #define kTotalVecCount (kVectorSizeCount + kStrangeVectorSizeCount) 25*6467f958SSadaf Ebrahimi 26*6467f958SSadaf Ebrahimi extern int g_arrVecSizes[kVectorSizeCount + kStrangeVectorSizeCount]; 27*6467f958SSadaf Ebrahimi // int g_arrStrangeVectorSizes[kStrangeVectorSizeCount] = {3}; 28*6467f958SSadaf Ebrahimi 29*6467f958SSadaf Ebrahimi extern int test_clamp(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 30*6467f958SSadaf Ebrahimi extern int test_degrees(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 31*6467f958SSadaf Ebrahimi extern int test_fmax(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 32*6467f958SSadaf Ebrahimi extern int test_fmaxf(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 33*6467f958SSadaf Ebrahimi extern int test_fmin(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 34*6467f958SSadaf Ebrahimi extern int test_fminf(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 35*6467f958SSadaf Ebrahimi extern int test_max(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 36*6467f958SSadaf Ebrahimi extern int test_maxf(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 37*6467f958SSadaf Ebrahimi extern int test_min(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 38*6467f958SSadaf Ebrahimi extern int test_minf(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 39*6467f958SSadaf Ebrahimi extern int test_mix(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 40*6467f958SSadaf Ebrahimi extern int test_mixf(cl_device_id device, cl_context context, 41*6467f958SSadaf Ebrahimi cl_command_queue queue, int num_elements); 42*6467f958SSadaf Ebrahimi extern int test_radians(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 43*6467f958SSadaf Ebrahimi extern int test_step(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 44*6467f958SSadaf Ebrahimi extern int test_stepf(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 45*6467f958SSadaf Ebrahimi extern int test_smoothstep(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 46*6467f958SSadaf Ebrahimi extern int test_smoothstepf(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 47*6467f958SSadaf Ebrahimi extern int test_sign(cl_device_id device, cl_context context, cl_command_queue queue, int num_elements); 48*6467f958SSadaf Ebrahimi 49*6467f958SSadaf Ebrahimi 50