26 lines
659 B
C++
26 lines
659 B
C++
/*
|
|
* Copyright (C) 2021-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/direct_submission/direct_submission_hw.h"
|
|
|
|
namespace NEO {
|
|
|
|
template <typename GfxFamily, typename Dispatcher>
|
|
inline void DirectSubmissionHw<GfxFamily, Dispatcher>::dispatchPartitionRegisterConfiguration() {
|
|
}
|
|
|
|
template <typename GfxFamily, typename Dispatcher>
|
|
inline size_t DirectSubmissionHw<GfxFamily, Dispatcher>::getSizePartitionRegisterConfigurationSection() {
|
|
return 0;
|
|
}
|
|
|
|
template <typename GfxFamily, typename Dispatcher>
|
|
inline void DirectSubmissionHw<GfxFamily, Dispatcher>::setImmWritePostSyncOffset() {
|
|
}
|
|
|
|
} // namespace NEO
|