mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Change-Id: I6b0b16aca93fac587b9552493f24f329636cf8e0 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
22 lines
433 B
C++
22 lines
433 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
|
|
|
namespace NEO {
|
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
void HwInfoConfigHw<gfxProduct>::adjustPlatformForProductFamily(HardwareInfo *hwInfo) {
|
|
}
|
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
bool HwInfoConfigHw<gfxProduct>::isEvenContextCountRequired() {
|
|
return false;
|
|
}
|
|
|
|
} // namespace NEO
|