/* * Copyright (C) 2020-2021 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 void EncodeStates::adjustStateComputeMode(LinearStream &csr, uint32_t numGrfRequired, void *const stateComputeModePtr, bool isMultiOsContextCapable, bool requiresCoherency, bool useGlobalAtomics, bool areMultipleSubDevicesInContext) { } template void EncodeStoreMMIO::remapOffset(MI_STORE_REGISTER_MEM *pStoreRegMem) { } template void EncodeSetMMIO::remapOffset(MI_LOAD_REGISTER_MEM *pMiLoadReg) { } template void EncodeSetMMIO::remapOffset(MI_LOAD_REGISTER_REG *pMiLoadReg) { } template bool EncodeSetMMIO::isRemapApplicable(uint32_t offset) { return false; } } // namespace NEO