mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-18 22:08:53 +08:00
Fix typo
Change-Id: Iee20423f527554acff39669fa22cc1bf8a09000d Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
5bfc20ff28
commit
4bf503da12
@@ -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
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user