Files
compute-runtime/shared/source/command_stream/stream_properties_extra.cpp
Zbigniew Zdanowicz e695059152 [perf] reduce host overhead in command list reset call
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>
2023-04-05 11:29:39 +02:00

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() {
}