mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Related-To: NEO-3210 Change-Id: I0516154b323e29eeb697bf2253ca08ae1ce150d8 Signed-off-by: Krzysztof Gibala <krzysztof.gibala@intel.com>
22 lines
443 B
C++
22 lines
443 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/gen9/hw_info.h"
|
|
#include "unit_tests/helpers/unit_test_helper.h"
|
|
#include "unit_tests/helpers/unit_test_helper.inl"
|
|
|
|
namespace NEO {
|
|
using Family = SKLFamily;
|
|
|
|
template <>
|
|
bool UnitTestHelper<Family>::isPipeControlWArequired(const HardwareInfo &hwInfo) {
|
|
return true;
|
|
}
|
|
|
|
template struct UnitTestHelper<Family>;
|
|
} // namespace NEO
|