2018-04-04 18:38:36 +02:00
|
|
|
/*
|
2020-01-31 14:35:46 +01:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-04-04 18:38:36 +02:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-04-04 18:38:36 +02:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
2018-04-04 18:38:36 +02:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2018-04-04 18:38:36 +02:00
|
|
|
|
2020-06-16 16:25:46 +02:00
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
|
|
|
bool HwInfoConfigHw<gfxProduct>::isEvenContextCountRequired() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-20 10:45:15 +01:00
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
|
|
|
void HwInfoConfigHw<gfxProduct>::adjustPlatformForProductFamily(HardwareInfo *hwInfo) {}
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|