mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
/*
|
|
* Copyright (C) 2018-2020 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 requiredPerThreadScratchSize,
|
|
uint32_t requiredPerThreadPrivateScratchSize,
|
|
uint32_t currentTaskCount,
|
|
OsContext &osContext,
|
|
bool &stateBaseAddressDirty,
|
|
bool &vfeStateDirty) override;
|
|
uint64_t calculateNewGSH() override;
|
|
uint64_t getScratchPatchAddress() override;
|
|
|
|
void reserveHeap(IndirectHeap::Type heapType, IndirectHeap *&indirectHeap) override;
|
|
|
|
protected:
|
|
void createScratchSpaceAllocation();
|
|
};
|
|
} // namespace NEO
|