mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
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
29 lines
368 B
C++
29 lines
368 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
static const std::vector<unsigned short> adlsDeviceIds{
|
|
0x4680,
|
|
0x4682,
|
|
0x4688,
|
|
0x468A,
|
|
0x4690,
|
|
0x4692,
|
|
0x4693,
|
|
0xA780,
|
|
0xA781,
|
|
0xA782,
|
|
0xA783,
|
|
0xA788,
|
|
0xA789};
|
|
|
|
} // namespace NEO
|