Files
compute-runtime/shared/source/command_stream/memory_compression_state.h
Slawomir Milczarek 6986d5de0b Add helper functions for memory compression to CSR
Signed-off-by: Slawomir Milczarek <slawomir.milczarek@intel.com>
2020-12-21 17:43:03 +01:00

17 lines
240 B
C++

/*
* Copyright (C) 2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
enum class MemoryCompressionState {
Disabled = 0x0u,
Enabled = 0x1u,
NotApplicable = 0x2u
};
} // namespace NEO