Files
compute-runtime/shared/source/command_stream/experimental_command_buffer.h
Warchulski, Jaroslaw 8de3898abc Cleanup includes 31
Cleaned up files:
shared/source/command_stream/experimental_command_buffer.h
shared/source/helpers/get_info.h
shared/source/helpers/local_id_gen.h
shared/source/memory_manager/gfx_partition.h
shared/source/memory_manager/host_ptr_manager.h
shared/source/memory_manager/prefetch_manager.h
shared/test/common/mocks/mock_memory_manager.h

Related-To: NEO-5548
Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
2023-01-16 11:45:55 +01:00

67 lines
1.5 KiB
C++

/*
* Copyright (C) 2018-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
#include <memory>
namespace NEO {
class CommandStreamReceiver;
class GraphicsAllocation;
class LinearStream;
class MemoryManager;
class ExperimentalCommandBuffer {
public:
virtual ~ExperimentalCommandBuffer();
ExperimentalCommandBuffer(CommandStreamReceiver *csr, double profilingTimerResolution);
template <typename GfxFamily>
void injectBufferStart(LinearStream &parentStream, size_t cmdBufferOffset);
template <typename GfxFamily>
size_t getRequiredInjectionSize() noexcept;
template <typename GfxFamily>
size_t programExperimentalCommandBuffer();
void makeResidentAllocations();
protected:
template <typename GfxFamily>
size_t getTotalExperimentalSize() noexcept;
void getCS(size_t minRequiredSize);
template <typename GfxFamily>
void addTimeStampPipeControl();
template <typename GfxFamily>
size_t getTimeStampPipeControlSize() noexcept;
template <typename GfxFamily>
void addExperimentalCommands();
template <typename GfxFamily>
size_t getExperimentalCommandsSize() noexcept;
CommandStreamReceiver *commandStreamReceiver;
std::unique_ptr<LinearStream> currentStream;
GraphicsAllocation *timestamps;
uint32_t timestampsOffset = 0;
GraphicsAllocation *experimentalAllocation;
uint32_t experimentalAllocationOffset = 0;
bool defaultPrint = true;
double timerResolution;
};
} // namespace NEO