Files
compute-runtime/third_party/aub_stream/aubstream/product_family.h
Mateusz Jablonski bb308c04ed Refactor aubstream include interface
set include path to third_party/aub_stream
rename third_party/aub_stream/headers -> third_party/aub_stream/aubstream

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2022-11-23 10:30:13 +01:00

32 lines
372 B
C++

/*
* Copyright (C) 2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
namespace aub_stream {
enum class ProductFamily : uint32_t {
Bdw,
Skl,
Kbl,
Cfl,
Bxt,
Glk,
Icllp,
Tgllp,
Adls,
Adlp,
Adln,
Dg1,
XeHpSdv,
Dg2,
Pvc,
MaxProduct,
};
} // namespace aub_stream