Files
compute-runtime/shared/source/command_stream/stream_properties_extra.cpp
Alicja Lukaszewicz bca503548a feature: add peer access check on driver init
Related-To: NEO-14885, HSD-14024947073

Signed-off-by: Alicja Lukaszewicz <alicja.lukaszewicz@intel.com>
2025-08-27 15:48:22 +02:00

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