Files
compute-runtime/shared/source/gen9/kbl/device_ids_configs_kbl.h
Daria Hinz 01af53b63c Setting default device id for acronym
This PR includes:
- Move product config implementation from
ocloc arg helper to product config helper.
- Add default device id setting for each platform configuration.
- Add & move hw info config tests from opencl to shared

Signed-off-by: Daria Hinz <daria.hinz@intel.com>
Related-To: NEO-7112
2022-07-15 12:28:58 +02:00

41 lines
573 B
C++

/*
* Copyright (C) 2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <vector>
namespace NEO {
static const std::vector<unsigned short> amlDeviceIds{0x591C};
static const std::vector<unsigned short> kblDeviceIds{
0x5902,
0x590B,
0x590A,
0x5906,
0x590E,
0x5908,
0x5913,
0x5915,
0x5912,
0x591B,
0x5917,
0x591A,
0x5916,
0x591E,
0x591D,
0x5921,
0x5926,
0x5927,
0x592B,
0x592A,
0x5923,
0x5932,
0x593B,
0x593A,
0x593D};
} // namespace NEO