refactor: use proper include pattern

Related-To: NEO-8043
Signed-off-by: Naklicki, Mateusz <mateusz.naklicki@intel.com>
This commit is contained in:
Naklicki, Mateusz
2023-09-21 10:42:46 +00:00
committed by Compute-Runtime-Automation
parent e96dd344c3
commit 054d4d04fa
20 changed files with 63 additions and 63 deletions

View File

@@ -6,9 +6,9 @@
*/
#include "shared/test/common/helpers/mock_product_helper_hw.h"
namespace NEO {
constexpr static auto gfxProduct = IGFX_ELKHARTLAKE;
#include "shared/test/common/helpers/mock_product_helper_hw.inl"
template struct MockProductHelperHw<gfxProduct>;
} // namespace NEO
template struct NEO::MockProductHelperHw<gfxProduct>;

View File

@@ -6,9 +6,9 @@
*/
#include "shared/test/common/helpers/mock_product_helper_hw.h"
namespace NEO {
constexpr static auto gfxProduct = IGFX_ICELAKE_LP;
#include "shared/test/common/helpers/mock_product_helper_hw.inl"
template struct MockProductHelperHw<gfxProduct>;
} // namespace NEO
template struct NEO::MockProductHelperHw<gfxProduct>;

View File

@@ -6,9 +6,9 @@
*/
#include "shared/test/common/helpers/mock_product_helper_hw.h"
namespace NEO {
constexpr static auto gfxProduct = IGFX_LAKEFIELD;
#include "shared/test/common/helpers/mock_product_helper_hw.inl"
template struct MockProductHelperHw<gfxProduct>;
} // namespace NEO
template struct NEO::MockProductHelperHw<gfxProduct>;