mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

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>
32 lines
372 B
C++
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
|