mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Change-Id: I16be70d15f329117539fe6dfcc07c6dc10d54977 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
20 lines
426 B
C++
20 lines
426 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/gmm_helper/gmm_lib.h"
|
|
|
|
namespace CacheSettings {
|
|
constexpr uint32_t unknownMocs = GMM_RESOURCE_USAGE_UNKNOWN;
|
|
} // namespace CacheSettings
|
|
|
|
namespace NEO {
|
|
class GraphicsAllocation;
|
|
bool isL3Capable(void *ptr, size_t size);
|
|
bool isL3Capable(const GraphicsAllocation &graphicsAllocation);
|
|
} // namespace NEO
|