From 7e4b59dfaa601f6b973bd22fe7ec364c69b04adf Mon Sep 17 00:00:00 2001 From: John Kesapides <46718829+JohnKesapidesARM@users.noreply.github.com> Date: Mon, 30 Oct 2023 13:01:34 +0000 Subject: [PATCH] Delete unused file test_float2int.cpp (#1831) Remove left over file from (#1537) https://github.com/KhronosGroup/OpenCL-CTS/pull/1537#issuecomment-1642088122 Signed-off-by: John Kesapides --- test_conformance/basic/test_float2int.cpp | 144 ---------------------- 1 file changed, 144 deletions(-) delete mode 100644 test_conformance/basic/test_float2int.cpp diff --git a/test_conformance/basic/test_float2int.cpp b/test_conformance/basic/test_float2int.cpp deleted file mode 100644 index 7f6276dd65..0000000000 --- a/test_conformance/basic/test_float2int.cpp +++ /dev/null @@ -1,144 +0,0 @@ -// -// Copyright (c) 2017 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 "harness/compat.h" - -#include -#include -#include -#include -#include - - -#include "procs.h" - -const char *float2int_kernel_code = -"__kernel void test_float2int(__global float *src, __global int *dst)\n" -"{\n" -" int tid = get_global_id(0);\n" -"\n" -" dst[tid] = (int)src[tid];\n" -"\n" -"}\n"; - - -int -verify_float2int(cl_float *inptr, cl_int *outptr, int n) -{ - int i; - - for (i=0; i