mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
refactor: fix typos
Signed-off-by: Jaroslaw Warchulski <jaroslaw.warchulski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
5c6ae48d17
commit
195bf66a49
@@ -57,7 +57,7 @@ struct OOMCommandQueueBufferTest : public MemoryManagementFixture,
|
||||
if (oomSetting.oomCS) {
|
||||
auto &cs = pCmdQ->getCS(oomSize);
|
||||
|
||||
// CommandStream may be larger than requested so grab what wasnt requested
|
||||
// CommandStream may be larger than requested so grab what was not requested
|
||||
cs.getSpace(cs.getAvailableSpace() - oomSize);
|
||||
ASSERT_EQ(oomSize, cs.getAvailableSpace());
|
||||
}
|
||||
@@ -65,7 +65,7 @@ struct OOMCommandQueueBufferTest : public MemoryManagementFixture,
|
||||
if (oomSetting.oomISH) {
|
||||
auto &ish = pCmdQ->getIndirectHeap(IndirectHeap::Type::dynamicState, oomSize);
|
||||
|
||||
// IndirectHeap may be larger than requested so grab what wasnt requested
|
||||
// IndirectHeap may be larger than requested so grab what was not requested
|
||||
ish.getSpace(ish.getAvailableSpace() - oomSize);
|
||||
ASSERT_EQ(oomSize, ish.getAvailableSpace());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user