mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
Add support for configuring ccs mode for all applicable devices before KMD is loaded. Use ZEX_NUMBER_OF_CCS to configure ccs mode. Format is as follows: ZEX_NUMBER_OF_CCS=NumberOfCcs i,e Setting ZEX_NUMBER_OF_CCS to 4 sets ccs mode to 4 for all devices for which configuration is supported. Related-To: NEO-10378 Signed-off-by: Bellekallu Rajkiran <bellekallu.rajkiran@intel.com>
22 lines
383 B
C++
22 lines
383 B
C++
/*
|
|
* Copyright (C) 2022-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
|
|
namespace NEO {
|
|
|
|
void ExecutionEnvironment::adjustRootDeviceEnvironments() {
|
|
}
|
|
|
|
void ExecutionEnvironment::configureCcsMode() {
|
|
}
|
|
|
|
void ExecutionEnvironment::restoreCcsMode() {
|
|
}
|
|
|
|
} // namespace NEO
|