mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 15:53:45 +08:00
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
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
05ad32704b
commit
01af53b63c
23
shared/source/gen11/ehl/device_ids_configs_ehl.h
Normal file
23
shared/source/gen11/ehl/device_ids_configs_ehl.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Copyright (C) 2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace NEO {
|
||||
static const std::vector<unsigned short> ehlDeviceIds{
|
||||
0x4500,
|
||||
0x4541,
|
||||
0x4551,
|
||||
0x4571,
|
||||
0x4555,
|
||||
0x4E51,
|
||||
0x4E61,
|
||||
0x4E71,
|
||||
0x4E55};
|
||||
} // namespace NEO
|
||||
22
shared/source/gen11/icllp/device_ids_configs_icllp.h
Normal file
22
shared/source/gen11/icllp/device_ids_configs_icllp.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Copyright (C) 2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace NEO {
|
||||
static const std::vector<unsigned short> icllpDeviceIds{
|
||||
0xFF05,
|
||||
0x8A56,
|
||||
0x8A58,
|
||||
0x8A5C,
|
||||
0x8A5A,
|
||||
0x8A50,
|
||||
0x8A52,
|
||||
0x8A51};
|
||||
} // namespace NEO
|
||||
14
shared/source/gen11/lkf/device_ids_configs_lkf.h
Normal file
14
shared/source/gen11/lkf/device_ids_configs_lkf.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* Copyright (C) 2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace NEO {
|
||||
static const std::vector<unsigned short> lkfDeviceIds{0x9840};
|
||||
} // namespace NEO
|
||||
Reference in New Issue
Block a user