Files
compute-runtime/runtime/helpers/dirty_state_helpers.cpp
Dunajski, Bartosz 1ecad5faed Move IndirectHeap to core and improve unit tests
Change-Id: If7e329fc12fe934eb0f6b1762d3b0d86aab287e6
Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
2019-12-03 15:06:27 +01:00

26 lines
617 B
C++

/*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/helpers/dirty_state_helpers.h"
#include "core/indirect_heap/indirect_heap.h"
using namespace NEO;
bool HeapDirtyState::updateAndCheck(const IndirectHeap *heap) {
if (!heap->getGraphicsAllocation()) {
sizeInPages = 0llu;
return true;
}
bool dirty = gpuBaseAddress != heap->getHeapGpuBase() || sizeInPages != heap->getHeapSizeInPages();
if (dirty) {
gpuBaseAddress = heap->getHeapGpuBase();
sizeInPages = heap->getHeapSizeInPages();
}
return dirty;
}