41 lines
522 B
C++
41 lines
522 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
inline const std::vector<unsigned short> sklDeviceIds{
|
|
0x1902,
|
|
0x190B,
|
|
0x190A,
|
|
0x1906,
|
|
0x190E,
|
|
0x1917,
|
|
0x1913,
|
|
0X1915,
|
|
0x1912,
|
|
0x191B,
|
|
0x191A,
|
|
0x1916,
|
|
0x191E,
|
|
0x191D,
|
|
0x1921,
|
|
0x9905,
|
|
0x192B,
|
|
0x192D,
|
|
0x192A,
|
|
0x1923,
|
|
0x1926,
|
|
0x1927,
|
|
0x1932,
|
|
0x193B,
|
|
0x193A,
|
|
0x193D};
|
|
} // namespace NEO
|