mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
Related-To: NEO-14885, HSD-14024947073 Signed-off-by: Alicja Lukaszewicz <alicja.lukaszewicz@intel.com>
27 lines
580 B
C++
27 lines
580 B
C++
/*
|
|
* Copyright (C) 2022-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/command_stream/stream_properties.h"
|
|
|
|
using namespace NEO;
|
|
|
|
void StateComputeModeProperties::setPropertiesExtraPerContext(std::optional<bool> hasPeerAccess) {
|
|
}
|
|
|
|
void StateComputeModeProperties::copyPropertiesExtra(const StateComputeModeProperties &properties) {
|
|
}
|
|
|
|
bool StateComputeModeProperties::isDirtyExtra() const {
|
|
return false;
|
|
}
|
|
|
|
void StateComputeModeProperties::clearIsDirtyExtraPerContext() {
|
|
}
|
|
|
|
void StateComputeModeProperties::resetStateExtra() {
|
|
}
|