mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
There is no need to reset all fields and load support flags every reset call. Add dedicated calls that will reset values and dirty flags. Call virtual methods only once at init time. Related-To: NEO-7828 Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
31 lines
680 B
C++
31 lines
680 B
C++
/*
|
|
* Copyright (C) 2022-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/command_stream/stream_properties.h"
|
|
|
|
using namespace NEO;
|
|
|
|
void StateComputeModeProperties::setPropertiesExtraPerContext() {
|
|
}
|
|
void StateComputeModeProperties::setPropertiesExtraPerKernel() {
|
|
}
|
|
|
|
void StateComputeModeProperties::copyPropertiesExtra(const StateComputeModeProperties &properties) {
|
|
}
|
|
|
|
bool StateComputeModeProperties::isDirtyExtra() const {
|
|
return false;
|
|
}
|
|
|
|
void StateComputeModeProperties::clearIsDirtyExtraPerContext() {
|
|
}
|
|
void StateComputeModeProperties::clearIsDirtyExtraPerKernel() {
|
|
}
|
|
|
|
void StateComputeModeProperties::resetStateExtra() {
|
|
}
|