33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/command_stream/scratch_space_controller.h"
|
|
|
|
namespace NEO {
|
|
|
|
class ScratchSpaceControllerBase : public ScratchSpaceController {
|
|
public:
|
|
ScratchSpaceControllerBase(ExecutionEnvironment &environment, InternalAllocationStorage &allocationStorage);
|
|
|
|
void setRequiredScratchSpace(void *sshBaseAddress,
|
|
uint32_t requiredPerThreadScratchSize,
|
|
uint32_t requiredPerThreadPrivateScratchSize,
|
|
uint32_t currentTaskCount,
|
|
uint32_t contextId,
|
|
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
|