From 49b01a8ea4d072b8aaf120b0af558cd26d32a802 Mon Sep 17 00:00:00 2001 From: Kamil Kopryk Date: Wed, 8 Mar 2023 16:37:44 +0000 Subject: [PATCH] refactor: rename product helper uuid files Related-To: NEO-7703 Signed-off-by: Kamil Kopryk --- shared/source/os_interface/linux/CMakeLists.txt | 2 +- ...ehp_and_later.inl => product_helper_uuid_xehp_and_later.inl} | 2 +- shared/source/xe_hp_core/linux/hw_info_config_xe_hp_sdv.cpp | 2 +- shared/source/xe_hpc_core/linux/hw_info_config_pvc.cpp | 2 +- shared/test/unit_test/os_interface/linux/CMakeLists.txt | 2 +- ...info_config_uuid_tests.cpp => product_helper_uuid_tests.cpp} | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename shared/source/os_interface/linux/{hw_info_config_uuid_xehp_and_later.inl => product_helper_uuid_xehp_and_later.inl} (98%) rename shared/test/unit_test/os_interface/linux/{hw_info_config_uuid_tests.cpp => product_helper_uuid_tests.cpp} (100%) diff --git a/shared/source/os_interface/linux/CMakeLists.txt b/shared/source/os_interface/linux/CMakeLists.txt index fbd3bdb290..2ab078bdf0 100644 --- a/shared/source/os_interface/linux/CMakeLists.txt +++ b/shared/source/os_interface/linux/CMakeLists.txt @@ -95,7 +95,7 @@ set(NEO_CORE_OS_INTERFACE_LINUX if(SUPPORT_XEHP_AND_LATER) list(APPEND NEO_CORE_OS_INTERFACE_LINUX ${CMAKE_CURRENT_SOURCE_DIR}/drm_command_stream_xehp_and_later.inl - ${CMAKE_CURRENT_SOURCE_DIR}/hw_info_config_uuid_xehp_and_later.inl + ${CMAKE_CURRENT_SOURCE_DIR}/product_helper_uuid_xehp_and_later.inl ) endif() diff --git a/shared/source/os_interface/linux/hw_info_config_uuid_xehp_and_later.inl b/shared/source/os_interface/linux/product_helper_uuid_xehp_and_later.inl similarity index 98% rename from shared/source/os_interface/linux/hw_info_config_uuid_xehp_and_later.inl rename to shared/source/os_interface/linux/product_helper_uuid_xehp_and_later.inl index 88b78dfee4..e7fc13b9fa 100644 --- a/shared/source/os_interface/linux/hw_info_config_uuid_xehp_and_later.inl +++ b/shared/source/os_interface/linux/product_helper_uuid_xehp_and_later.inl @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021-2022 Intel Corporation + * Copyright (C) 2021-2023 Intel Corporation * * SPDX-License-Identifier: MIT * diff --git a/shared/source/xe_hp_core/linux/hw_info_config_xe_hp_sdv.cpp b/shared/source/xe_hp_core/linux/hw_info_config_xe_hp_sdv.cpp index a0ef77b47a..8597363c42 100644 --- a/shared/source/xe_hp_core/linux/hw_info_config_xe_hp_sdv.cpp +++ b/shared/source/xe_hp_core/linux/hw_info_config_xe_hp_sdv.cpp @@ -28,7 +28,7 @@ const std::map> guidUuidOffsetMap = { // add new values for guid in the form of {"guid", {offset, size}} for each platform {"0xfdc76195", {64u, 8u}}}; -#include "shared/source/os_interface/linux/hw_info_config_uuid_xehp_and_later.inl" +#include "shared/source/os_interface/linux/product_helper_uuid_xehp_and_later.inl" } // namespace NEO #include "shared/source/xe_hp_core/os_agnostic_product_helper_xe_hp_core.inl" diff --git a/shared/source/xe_hpc_core/linux/hw_info_config_pvc.cpp b/shared/source/xe_hpc_core/linux/hw_info_config_pvc.cpp index 08e91ceb26..e97e0c1eca 100644 --- a/shared/source/xe_hpc_core/linux/hw_info_config_pvc.cpp +++ b/shared/source/xe_hpc_core/linux/hw_info_config_pvc.cpp @@ -29,7 +29,7 @@ namespace NEO { const std::map> guidUuidOffsetMap = { // add new values for guid in the form of {"guid", {offset, size}} for each platform {"0x41fe79a5", {64u, 8u}}}; -#include "shared/source/os_interface/linux/hw_info_config_uuid_xehp_and_later.inl" +#include "shared/source/os_interface/linux/product_helper_uuid_xehp_and_later.inl" #include "shared/source/os_interface/linux/product_helper_xe_hpc_and_later.inl" } // namespace NEO #include "shared/source/xe_hpc_core/os_agnostic_product_helper_xe_hpc_core.inl" diff --git a/shared/test/unit_test/os_interface/linux/CMakeLists.txt b/shared/test/unit_test/os_interface/linux/CMakeLists.txt index 362a0af9bb..03176e4b2c 100644 --- a/shared/test/unit_test/os_interface/linux/CMakeLists.txt +++ b/shared/test/unit_test/os_interface/linux/CMakeLists.txt @@ -33,7 +33,7 @@ set(NEO_CORE_OS_INTERFACE_TESTS_LINUX ${CMAKE_CURRENT_SOURCE_DIR}/drm_version_tests.cpp ${CMAKE_CURRENT_SOURCE_DIR}/file_logger_linux_tests.cpp ${CMAKE_CURRENT_SOURCE_DIR}/product_helper_linux_tests.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/hw_info_config_uuid_tests.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/product_helper_uuid_tests.cpp ${CMAKE_CURRENT_SOURCE_DIR}/os_context_linux_tests.cpp ${CMAKE_CURRENT_SOURCE_DIR}/os_interface_linux_tests.cpp ${CMAKE_CURRENT_SOURCE_DIR}/os_library_linux_tests.cpp diff --git a/shared/test/unit_test/os_interface/linux/hw_info_config_uuid_tests.cpp b/shared/test/unit_test/os_interface/linux/product_helper_uuid_tests.cpp similarity index 100% rename from shared/test/unit_test/os_interface/linux/hw_info_config_uuid_tests.cpp rename to shared/test/unit_test/os_interface/linux/product_helper_uuid_tests.cpp