Change-Id: Iee20423f527554acff39669fa22cc1bf8a09000d
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2020-04-27 15:08:43 +02:00
committed by sys_ocldev
parent 5bfc20ff28
commit 4bf503da12
2 changed files with 3 additions and 3 deletions

View File

@@ -65,6 +65,6 @@ void FlatBatchBufferHelper::fixCrossThreadDataInfo(std::vector<PatchInfoData> &d
}
MemoryManager *FlatBatchBufferHelper::getMemoryManager() const {
return executionEnvironemnt.memoryManager.get();
return executionEnvironment.memoryManager.get();
}
}; // namespace NEO

View File

@@ -21,7 +21,7 @@ class ExecutionEnvironment;
class FlatBatchBufferHelper {
public:
FlatBatchBufferHelper(ExecutionEnvironment &executionEnvironemnt) : executionEnvironemnt(executionEnvironemnt) {}
FlatBatchBufferHelper(ExecutionEnvironment &executionEnvironment) : executionEnvironment(executionEnvironment) {}
virtual ~FlatBatchBufferHelper(){};
MOCKABLE_VIRTUAL bool setPatchInfoData(const PatchInfoData &data);
MOCKABLE_VIRTUAL bool removePatchInfoData(uint64_t targetLocation);
@@ -41,7 +41,7 @@ class FlatBatchBufferHelper {
protected:
MemoryManager *getMemoryManager() const;
ExecutionEnvironment &executionEnvironemnt;
ExecutionEnvironment &executionEnvironment;
std::vector<PatchInfoData> patchInfoCollection;
std::vector<CommandChunk> commandChunkList;