mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Cleaned up files: level_zero/tools/test/unit_tests/sources/sysman/windows/mock_sysman_fixture.h shared/test/common/os_interface/windows/wddm_fixture.h shared/test/unit_test/command_stream/compute_mode_tests.h shared/test/unit_test/encoders/walker_partition_fixture_xehp_and_later.h shared/test/unit_test/fixtures/preemption_fixture.h shared/test/unit_test/helpers/blit_commands_helper_tests.inl shared/test/unit_test/helpers/simd_helper_tests.inl Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
19 lines
561 B
C++
19 lines
561 B
C++
/*
|
|
* Copyright (C) 2021-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/gen8/hw_cmds_base.h"
|
|
#include "shared/test/common/test_macros/header/per_product_test_definitions.h"
|
|
#include "shared/test/unit_test/helpers/simd_helper_tests.inl"
|
|
|
|
using namespace NEO;
|
|
|
|
using TestSimdConfigSet = ::testing::Test;
|
|
|
|
GEN8TEST_F(TestSimdConfigSet, GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturnedGen8) {
|
|
GivenSimdSizeWhenGetSimdConfigCalledThenCorrectEnumReturned<typename FamilyType::GPGPU_WALKER>::testBodyImpl();
|
|
}
|