Skip to content

Commit 5cfb59c

Browse files
Disable timestamp shift for gen9
also move hwhelper tests from opencl to shared folder Related-To: HSD-18025130857 Signed-off-by: Katarzyna Cencelewska <[email protected]>
1 parent d91d22d commit 5cfb59c

12 files changed

+205
-688
lines changed

opencl/test/unit_test/helpers/CMakeLists.txt

+1-9
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ set(IGDRCL_SRCS_tests_helpers
1818
${CMAKE_CURRENT_SOURCE_DIR}/heap_assigner_ocl_tests.cpp
1919
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_default_tests.cpp
2020
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_tests.cpp
21-
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_tests_dg2_or_below.cpp
2221
${CMAKE_CURRENT_SOURCE_DIR}/kmd_notify_tests.cpp
2322
${CMAKE_CURRENT_SOURCE_DIR}/memory_properties_helpers_tests.cpp
2423
${CMAKE_CURRENT_SOURCE_DIR}/mipmap_tests.cpp
@@ -37,24 +36,17 @@ if(TESTS_XEHP_AND_LATER)
3736
list(APPEND IGDRCL_SRCS_tests_helpers
3837
${CMAKE_CURRENT_SOURCE_DIR}/aub_helper_hw_tests_xehp_and_later.cpp
3938
${CMAKE_CURRENT_SOURCE_DIR}/engine_node_helper_tests_xehp_and_later.cpp
40-
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_tests_xehp_and_later.cpp
39+
${CMAKE_CURRENT_SOURCE_DIR}/cl_hw_helper_tests_xehp_and_later.cpp
4140
${CMAKE_CURRENT_SOURCE_DIR}/test_preamble_xehp_and_later.cpp
4241
)
4342
endif()
4443

4544
if(TESTS_DG2_AND_LATER)
4645
list(APPEND IGDRCL_SRCS_tests_helpers
47-
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_tests_dg2_and_later.cpp
4846
${CMAKE_CURRENT_SOURCE_DIR}/test_preamble_dg2_and_later.cpp
4947
)
5048
endif()
5149

52-
if(TESTS_PVC_AND_LATER)
53-
list(APPEND IGDRCL_SRCS_tests_helpers
54-
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_tests_pvc_and_later.cpp
55-
)
56-
endif()
57-
5850
get_property(NEO_CORE_PREAMBLE_TESTS GLOBAL PROPERTY NEO_CORE_PREAMBLE_TESTS)
5951

6052
target_sources(igdrcl_tests PRIVATE ${IGDRCL_SRCS_tests_helpers})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* Copyright (C) 2021-2022 Intel Corporation
3+
*
4+
* SPDX-License-Identifier: MIT
5+
*
6+
*/
7+
8+
#include "shared/test/common/helpers/hw_helper_tests.h"
9+
#include "shared/test/common/test_macros/hw_test.h"
10+
11+
#include "opencl/source/helpers/cl_hw_helper.h"
12+
#include "opencl/test/unit_test/fixtures/cl_device_fixture.h"
13+
#include "opencl/test/unit_test/mocks/mock_context.h"
14+
15+
using ClHwHelperTestXeHpAndLater = ::testing::Test;
16+
17+
HWCMDTEST_F(IGFX_XE_HP_CORE, ClHwHelperTestXeHpAndLater, givenCLImageFormatsWhenCallingIsFormatRedescribableThenFalseIsReturned) {
18+
static const cl_image_format redescribeFormats[] = {
19+
{CL_R, CL_UNSIGNED_INT8},
20+
{CL_R, CL_UNSIGNED_INT16},
21+
{CL_R, CL_UNSIGNED_INT32},
22+
{CL_RG, CL_UNSIGNED_INT32},
23+
{CL_RGBA, CL_UNSIGNED_INT32},
24+
};
25+
MockContext context;
26+
auto &clHwHelper = ClHwHelper::get(context.getDevice(0)->getHardwareInfo().platform.eRenderCoreFamily);
27+
28+
for (const auto &format : redescribeFormats) {
29+
EXPECT_EQ(false, clHwHelper.isFormatRedescribable(format));
30+
}
31+
}

opencl/test/unit_test/helpers/hw_helper_tests_dg2_and_later.cpp

-168
This file was deleted.

0 commit comments

Comments
 (0)