2022-02-22 23:00:35 +08:00
|
|
|
/*
|
2024-03-11 05:25:36 +08:00
|
|
|
* Copyright (C) 2022-2024 Intel Corporation
|
2022-02-22 23:00:35 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace NEO {
|
2024-03-11 05:25:36 +08:00
|
|
|
const std::vector<unsigned short> bxtDeviceIds{
|
2022-07-08 19:29:59 +08:00
|
|
|
0x9906,
|
|
|
|
0x9907,
|
|
|
|
0x0A84,
|
|
|
|
0x5A84,
|
|
|
|
0x5A85,
|
|
|
|
0x1A85,
|
|
|
|
0x1A84,
|
|
|
|
0x9908};
|
2022-04-04 18:01:18 +08:00
|
|
|
} // namespace NEO
|