mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
Updating files modified in 2018 only. Older files remain with old style copyright header Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
27 lines
1.0 KiB
C++
27 lines
1.0 KiB
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/command_stream/experimental_command_buffer.h"
|
|
#include "runtime/command_stream/experimental_command_buffer.inl"
|
|
#include "runtime/helpers/hw_helper.h"
|
|
|
|
namespace OCLRT {
|
|
typedef BDWFamily 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;
|
|
} // namespace OCLRT
|