refactor: remove not used code

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz 2024-09-12 11:36:58 +00:00 committed by Compute-Runtime-Automation
parent 29bd2763f1
commit b7dfc5c1de
3 changed files with 1 additions and 13 deletions

View File

@ -46,12 +46,10 @@ struct StateComputeModeProperties {
protected:
void clearIsDirtyExtraPerContext();
void clearIsDirtyExtraPerKernel();
bool isDirtyExtra() const;
void resetStateExtra();
void setPropertiesExtraPerContext();
void setPropertiesExtraPerKernel();
void copyPropertiesExtra(const StateComputeModeProperties &properties);

View File

@ -50,7 +50,6 @@ void StateComputeModeProperties::setPropertiesAll(bool requiresCoherency, uint32
}
setPropertiesExtraPerContext();
setPropertiesExtraPerKernel();
}
void StateComputeModeProperties::copyPropertiesAll(const StateComputeModeProperties &properties) {
@ -71,8 +70,6 @@ void StateComputeModeProperties::copyPropertiesGrfNumberThreadArbitration(const
largeGrfMode.isDirty = false;
threadArbitrationPolicy.isDirty = false;
clearIsDirtyExtraPerKernel();
largeGrfMode.set(properties.largeGrfMode.value);
threadArbitrationPolicy.set(properties.threadArbitrationPolicy.value);
@ -94,7 +91,6 @@ void StateComputeModeProperties::clearIsDirty() {
memoryAllocationForScratchAndMidthreadPreemptionBuffers.isDirty = false;
clearIsDirtyExtraPerContext();
clearIsDirtyExtraPerKernel();
}
void StateComputeModeProperties::setCoherencyProperty(bool requiresCoherency) {
@ -179,11 +175,9 @@ void StateComputeModeProperties::setPropertiesGrfNumberThreadArbitration(uint32_
this->threadArbitrationPolicy.isDirty = false;
this->largeGrfMode.isDirty = false;
clearIsDirtyExtraPerKernel();
setGrfNumberProperty(numGrfRequired);
setThreadArbitrationProperty(threadArbitrationPolicy);
setPropertiesExtraPerKernel();
}
void FrontEndProperties::initSupport(const RootDeviceEnvironment &rootDeviceEnvironment) {

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2022-2023 Intel Corporation
* Copyright (C) 2022-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@ -11,8 +11,6 @@ using namespace NEO;
void StateComputeModeProperties::setPropertiesExtraPerContext() {
}
void StateComputeModeProperties::setPropertiesExtraPerKernel() {
}
void StateComputeModeProperties::copyPropertiesExtra(const StateComputeModeProperties &properties) {
}
@ -23,8 +21,6 @@ bool StateComputeModeProperties::isDirtyExtra() const {
void StateComputeModeProperties::clearIsDirtyExtraPerContext() {
}
void StateComputeModeProperties::clearIsDirtyExtraPerKernel() {
}
void StateComputeModeProperties::resetStateExtra() {
}