mirror of
https://github.com/intel/compute-runtime.git
synced 2025-11-10 05:49:51 +08:00
Resolves: NEO-4121 Change-Id: I29dfcf07d48100c578cbc432fee4d87dfa18e8f4 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
20 lines
574 B
C++
20 lines
574 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/command_container/command_encoder.h"
|
|
#include "shared/source/command_stream/linear_stream.h"
|
|
|
|
namespace NEO {
|
|
template <typename Family>
|
|
void EncodeStates<Family>::adjustStateComputeMode(LinearStream &csr, uint32_t numGrfRequired, void *const stateComputeModePtr, bool isMultiOsContextCapable, bool requiresCoherency) {
|
|
}
|
|
|
|
template <typename Family>
|
|
void EncodeStoreMMIO<Family>::remapOffset(MI_STORE_REGISTER_MEM *pStoreRegMem) {
|
|
}
|
|
} // namespace NEO
|