mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 15:53:13 +08:00
move most of members to protected section merge related members into structs Change-Id: Ief2e092aa5e61ca6f13308f9d9b1937ea6c913b4 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
26 lines
723 B
C++
26 lines
723 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/cache_policy.h"
|
|
|
|
#include "runtime/helpers/aligned_memory.h"
|
|
#include "runtime/memory_manager/graphics_allocation.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
bool isL3Capable(void *ptr, size_t size) {
|
|
return isAligned<MemoryConstants::cacheLineSize>(ptr) &&
|
|
isAligned<MemoryConstants::cacheLineSize>(size);
|
|
}
|
|
|
|
bool isL3Capable(const OCLRT::GraphicsAllocation &graphicsAllocation) {
|
|
auto ptr = ptrOffset(graphicsAllocation.getUnderlyingBuffer(), static_cast<size_t>(graphicsAllocation.getAllocationOffset()));
|
|
return isL3Capable(ptr, graphicsAllocation.getUnderlyingBufferSize());
|
|
}
|
|
|
|
} // namespace OCLRT
|