2018-07-05 11:23:28 +02:00
|
|
|
/*
|
2020-02-19 16:32:40 +01:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-07-05 11:23:28 +02:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-07-05 11:23:28 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/command_stream/experimental_command_buffer.h"
|
|
|
|
#include "shared/source/command_stream/experimental_command_buffer.inl"
|
|
|
|
#include "shared/source/helpers/hw_helper.h"
|
2018-07-05 11:23:28 +02:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2018-07-05 11:23:28 +02:00
|
|
|
typedef SKLFamily 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 11:59:46 +01:00
|
|
|
} // namespace NEO
|