51 lines
2.2 KiB
C++
51 lines
2.2 KiB
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/command_stream/scratch_space_controller.h"
|
|
|
|
namespace NEO {
|
|
|
|
class ScratchSpaceControllerBase : public ScratchSpaceController {
|
|
public:
|
|
ScratchSpaceControllerBase(uint32_t rootDeviceIndex, ExecutionEnvironment &environment, InternalAllocationStorage &allocationStorage);
|
|
|
|
void setRequiredScratchSpace(void *sshBaseAddress,
|
|
uint32_t scratchSlot,
|
|
uint32_t requiredPerThreadScratchSize,
|
|
uint32_t requiredPerThreadPrivateScratchSize,
|
|
TaskCountType currentTaskCount,
|
|
OsContext &osContext,
|
|
bool &stateBaseAddressDirty,
|
|
bool &vfeStateDirty) override;
|
|
|
|
uint64_t calculateNewGSH() override;
|
|
uint64_t getScratchPatchAddress() override;
|
|
|
|
void reserveHeap(IndirectHeap::Type heapType, IndirectHeap *&indirectHeap) override;
|
|
void programHeaps(HeapContainer &heapContainer,
|
|
uint32_t scratchSlot,
|
|
uint32_t requiredPerThreadScratchSize,
|
|
uint32_t requiredPerThreadPrivateScratchSize,
|
|
TaskCountType currentTaskCount,
|
|
OsContext &osContext,
|
|
bool &stateBaseAddressDirty,
|
|
bool &vfeStateDirty) override;
|
|
void programBindlessSurfaceStateForScratch(BindlessHeapsHelper *heapsHelper,
|
|
uint32_t requiredPerThreadScratchSize,
|
|
uint32_t requiredPerThreadPrivateScratchSize,
|
|
TaskCountType currentTaskCount,
|
|
OsContext &osContext,
|
|
bool &stateBaseAddressDirty,
|
|
bool &vfeStateDirty,
|
|
NEO::CommandStreamReceiver *csr) override;
|
|
|
|
protected:
|
|
void createScratchSpaceAllocation();
|
|
};
|
|
} // namespace NEO
|