mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
- Replaced by Hardware Helper code. Change-Id: I55026ee33fcaaffbfb529e1878ae4f7033f62ee5 Signed-off-by: Mrozek, Michal <michal.mrozek@intel.com>
20 lines
429 B
C++
20 lines
429 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/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
|