Move remaining SBA files to shared

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski
2020-11-26 14:40:53 +01:00
committed by Compute-Runtime-Automation
parent e6a18aac73
commit 60d0d4d67f
6 changed files with 1 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ set(CORE_RUNTIME_SRCS_GENX_CPP_BASE
hw_helper
preamble
preemption
state_base_address
)
set(CORE_RUNTIME_SRCS_GENX_CPP_WINDOWS

View File

@@ -0,0 +1,14 @@
/*
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/helpers/state_base_address.h"
#include "shared/source/helpers/state_base_address_bdw_plus.inl"
#include "shared/source/helpers/state_base_address_skl_plus.inl"
namespace NEO {
template struct StateBaseAddressHelper<ICLFamily>;
}

View File

@@ -0,0 +1,14 @@
/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/helpers/state_base_address.h"
#include "shared/source/helpers/state_base_address_bdw_plus.inl"
#include "shared/source/helpers/state_base_address_skl_plus.inl"
namespace NEO {
template struct StateBaseAddressHelper<TGLLPFamily>;
}

View File

@@ -0,0 +1,14 @@
/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/helpers/state_base_address.h"
#include "shared/source/helpers/state_base_address_bdw.inl"
#include "shared/source/helpers/state_base_address_bdw_plus.inl"
namespace NEO {
template struct StateBaseAddressHelper<BDWFamily>;
}

View File

@@ -0,0 +1,14 @@
/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/helpers/state_base_address.h"
#include "shared/source/helpers/state_base_address_bdw_plus.inl"
#include "shared/source/helpers/state_base_address_skl_plus.inl"
namespace NEO {
template struct StateBaseAddressHelper<SKLFamily>;
}