2018-07-05 17:23:28 +08:00
|
|
|
/*
|
2023-02-02 00:23:01 +08:00
|
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
2018-07-05 17:23:28 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-07-05 17:23:28 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/command_stream/experimental_command_buffer.h"
|
|
|
|
#include "shared/source/command_stream/experimental_command_buffer.inl"
|
2022-06-24 21:56:25 +08:00
|
|
|
#include "shared/source/gen8/hw_cmds.h"
|
2023-02-02 00:23:01 +08:00
|
|
|
#include "shared/source/helpers/gfx_core_helper.h"
|
2018-07-05 17:23:28 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2022-07-25 23:30:11 +08:00
|
|
|
typedef Gen8Family GfxFamily;
|
2018-07-05 17:23:28 +08:00
|
|
|
|
|
|
|
template void ExperimentalCommandBuffer::injectBufferStart<GfxFamily>(LinearStream &parentStream, size_t cmdBufferOffset);
|
|
|
|
template size_t ExperimentalCommandBuffer::getRequiredInjectionSize<GfxFamily>() noexcept;
|
|
|
|
|
|
|
|
template size_t ExperimentalCommandBuffer::programExperimentalCommandBuffer<GfxFamily>();
|
|
|
|
template size_t ExperimentalCommandBuffer::getTotalExperimentalSize<GfxFamily>() noexcept;
|
|
|
|
|
|
|
|
template void ExperimentalCommandBuffer::addTimeStampPipeControl<GfxFamily>();
|
|
|
|
template size_t ExperimentalCommandBuffer::getTimeStampPipeControlSize<GfxFamily>() noexcept;
|
|
|
|
|
|
|
|
template void ExperimentalCommandBuffer::addExperimentalCommands<GfxFamily>();
|
|
|
|
template size_t ExperimentalCommandBuffer::getExperimentalCommandsSize<GfxFamily>() noexcept;
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|