Files
compute-runtime/shared/source/memory_manager/compression_selector.h
Kamil Kopryk 0dbf92d401 Refactor: reduce global productHelper getter usage
Related-To: NEO-6853
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
2023-01-04 16:35:20 +01:00

21 lines
342 B
C++

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