2018-07-05 17:23:28 +08:00
|
|
|
/*
|
2019-03-26 18:59:46 +08:00
|
|
|
* Copyright (C) 2018-2019 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "runtime/command_stream/experimental_command_buffer.h"
|
|
|
|
#include "runtime/command_stream/experimental_command_buffer.inl"
|
|
|
|
#include "runtime/helpers/hw_helper.h"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-07-05 17:23:28 +08:00
|
|
|
typedef CNLFamily GfxFamily;
|
|
|
|
|
|
|
|
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
|