Files
compute-runtime/shared/source/memory_manager/compression_selector.h
2022-09-14 11:54:24 +02:00

21 lines
346 B
C++

/*
* Copyright (C) 2020-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
struct AllocationProperties;
struct HardwareInfo;
class CompressionSelector {
public:
static bool preferCompressedAllocation(const AllocationProperties &properties, const HardwareInfo &hwInfo);
};
} // namespace NEO