mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Add helper method to UnitTestHelper to query programmed grf values. Related-To: NEO-6659 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
21 lines
479 B
C++
21 lines
479 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/command_stream/stream_properties.h"
|
|
|
|
using namespace NEO;
|
|
|
|
void StateComputeModeProperties::setPropertiesExtra(bool reportNumGrf) {
|
|
}
|
|
void StateComputeModeProperties::setPropertiesExtra(const StateComputeModeProperties &properties) {
|
|
}
|
|
bool StateComputeModeProperties::isDirtyExtra() const {
|
|
return false;
|
|
}
|
|
void StateComputeModeProperties::clearIsDirtyExtra() {
|
|
}
|