fix: remove incorrect test kernel

test uses image3d_t which is not supported on all platforms
since the functionality can be tested with other kernel
this one can be removed

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski 2024-09-20 13:09:40 +00:00 committed by Compute-Runtime-Automation
parent c1edd23fd2
commit 33ece63b91
3 changed files with 3 additions and 12 deletions

View File

@ -42,7 +42,7 @@ components:
dest_dir: kernels_bin
type: git
branch: kernels_bin
revision: 3046-2390
revision: 3046-2394
kmdaf:
branch: kmdaf
dest_dir: kmdaf

View File

@ -575,7 +575,7 @@ class KernelFromBinaryTest : public ProgramSimpleFixture {
typedef Test<KernelFromBinaryTest> KernelFromBinaryTests;
TEST_F(KernelFromBinaryTests, GivenKernelNumArgsWhenGettingInfoThenNumberOfKernelArgsIsReturned) {
createProgramFromBinary(pContext, pContext->getDevices(), "kernel_num_args");
createProgramFromBinary(pContext, pContext->getDevices(), "simple_kernels");
ASSERT_NE(nullptr, pProgram);
retVal = pProgram->build(
@ -584,7 +584,7 @@ TEST_F(KernelFromBinaryTests, GivenKernelNumArgsWhenGettingInfoThenNumberOfKerne
ASSERT_EQ(CL_SUCCESS, retVal);
auto &kernelInfo = pProgram->getKernelInfoForKernel("test");
auto &kernelInfo = pProgram->getKernelInfoForKernel("simple_kernel_0");
// create a kernel
auto kernel = Kernel::create(

View File

@ -1,9 +0,0 @@
/*
* Copyright (C) 2018-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
__kernel void test(__global float *argGlobal, __read_only image3d_t argImg3D, __constant float *argConst) {
}