public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/openvino] origin/pr/7/head: intel_npu plugin enabled
@ 2026-06-10 16:59 Ali Erdinc Koroglu
  0 siblings, 0 replies; only message in thread
From: Ali Erdinc Koroglu @ 2026-06-10 16:59 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/openvino
Branch : origin/pr/7/head
Commit : ee02af7f5037d93d48f60bb953d9ba1650934c31
Author : Ali Erdinc Koroglu <aekoroglu@linux.intel.com>
Date   : 2025-01-31T01:36:49+02:00
Stats  : +329/-9 in 6 file(s)
URL    : https://src.fedoraproject.org/rpms/openvino/c/ee02af7f5037d93d48f60bb953d9ba1650934c31?branch=origin/pr/7/head

Log:
intel_npu plugin enabled

---
diff --git a/.gitignore b/.gitignore
index 39062db..5e0eb53 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /openvino-*.tar.gz
 /mlas-*.tar.gz
 /onednn-*.tar.gz
+/level-zero-npu-extensions-*.tar.gz

diff --git a/dependencies.cmake b/dependencies.cmake
index e7746ba..f4f8831 100644
--- a/dependencies.cmake
+++ b/dependencies.cmake
@@ -1,3 +1,94 @@
+# Copyright (C) 2018-2025 Intel Corporation
+# SPDX-License-Identifier: Apache-2.0
+#
+
+#
+# LevelZero
+#
+
+if(ENABLE_INTEL_NPU)
+    if(ENABLE_SYSTEM_LEVEL_ZERO)
+        pkg_search_module(level_zero QUIET
+                          IMPORTED_TARGET
+                          ${OV_PkgConfig_VISIBILITY}
+                          level-zero)
+        if(level_zero_FOUND)
+            add_library(LevelZero::LevelZero ALIAS PkgConfig::level_zero)
+            message(STATUS "${PKG_CONFIG_EXECUTABLE}: level_zero (${level_zero_VERSION}) is found at ${level_zero_PREFIX}")
+        endif()
+    endif()
+
+    if(NOT level_zero_FOUND)
+        add_subdirectory(thirdparty/level_zero EXCLUDE_FROM_ALL)
+        add_library(LevelZero::LevelZero ALIAS ze_loader)
+    endif()
+endif()
+
+#
+# OpenCL
+#
+
+if(ENABLE_INTEL_GPU)
+    if(ENABLE_SYSTEM_OPENCL)
+        # try to find system OpenCL:
+        # - 'apt-get install opencl-headers ocl-icd-opencl-dev'
+        # - 'yum install ocl-icd-devel opencl-headers'
+        # - 'conda install khronos-opencl-icd-loader -c conda-forge'
+        # - 'vcpkg install opencl:<triplet>'
+        # - 'conan install opencl-headers opencl-clhpp-headers opencl-icd-loader'
+        # - 'brew install opencl-headers opencl-clhpp-headers opencl-icd-loader'
+        find_package(OpenCL QUIET)
+    endif()
+
+    if(TARGET OpenCL::OpenCL)
+        # try to find CL/opencl.hpp
+        find_file(OpenCL_HPP
+                  NAMES CL/opencl.hpp OpenCL/opencl.hpp
+                  HINTS ${OpenCL_INCLUDE_DIRS} ${opencl_cpp_include_dirs}
+                  DOC "Path to CL/opencl.hpp")
+
+        # add definition to select proper header and suppress warnings
+        if(OpenCL_HPP)
+            set(opencl_interface_definitions OV_GPU_USE_OPENCL_HPP)
+
+            # check whether CL/opencl.hpp contains C++ wrapper for property CL_DEVICE_UUID_KHR
+            file(STRINGS "${OpenCL_HPP}" CL_DEVICE_UUID_KHR_CPP REGEX ".*CL_DEVICE_UUID_KHR.*")
+            if(CL_DEVICE_UUID_KHR_CPP)
+                list(APPEND opencl_interface_definitions OV_GPU_OPENCL_HPP_HAS_UUID)
+            endif()
+
+            set_target_properties(OpenCL::OpenCL PROPERTIES
+                INTERFACE_COMPILE_DEFINITIONS "${opencl_interface_definitions}")
+        endif()
+    else()
+        add_subdirectory(thirdparty/ocl)
+    endif()
+
+    # cmake cannot set properties for imported targets
+    get_target_property(opencl_target OpenCL::OpenCL ALIASED_TARGET)
+    if(NOT TARGET ${opencl_target})
+        set(opencl_target OpenCL::OpenCL)
+    endif()
+
+    if(SUGGEST_OVERRIDE_SUPPORTED)
+        set_target_properties(${opencl_target} PROPERTIES INTERFACE_COMPILE_OPTIONS
+            $<$<COMPILE_LANGUAGE:CXX>:-Wno-suggest-override>)
+    endif()
+
+    # used in tests
+    add_library(opencl_new_headers INTERFACE)
+    add_library(OpenCL::NewHeaders ALIAS opencl_new_headers)
+    foreach(opencl_dir "${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/ocl/clhpp_headers/include"
+                       "${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/ocl/cl_headers")
+        if(EXISTS "${opencl_dir}")
+            set_property(TARGET opencl_new_headers APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
+                $<BUILD_INTERFACE:${opencl_dir}>)
+            set_target_properties(opencl_new_headers PROPERTIES
+                INTERFACE_COMPILE_DEFINITIONS OV_GPU_USE_OPENCL_HPP)
+        endif()
+    endforeach()
+endif()
+
 #
 # Pugixml
 #
@@ -33,7 +124,7 @@ if(ENABLE_SYSTEM_PUGIXML)
         # Ubuntu 18.04 case when cmake interface is not available
         pkg_search_module(pugixml QUIET
                           IMPORTED_TARGET
-                          ${OV_PkgConfig_VISILITY}
+                          ${OV_PkgConfig_VISIBILITY}
                           pugixml)
         if(pugixml_FOUND)
             set(pugixml_target PkgConfig::pugixml)
@@ -92,7 +183,7 @@ if(ENABLE_SYSTEM_PUGIXML)
             message(FATAL_ERROR "Debian | RPM package build requires shared Pugixml library")
         endif()
 
-        if(OV_PkgConfig_VISILITY)
+        if(OV_PkgConfig_VISIBILITY)
             # need to set GLOBAL visibility in order to create ALIAS for this target
             set_target_properties(${pugixml_target} PROPERTIES IMPORTED_GLOBAL ON)
         endif()

diff --git a/npu-level-zero.patch b/npu-level-zero.patch
new file mode 100644
index 0000000..3f5724c
--- /dev/null
+++ b/npu-level-zero.patch
@@ -0,0 +1,211 @@
+--- a/src/plugins/intel_npu/thirdparty/CMakeLists.txt	2024-12-09 20:53:55.103131478 +0200
++++ b/src/plugins/intel_npu/thirdparty/CMakeLists.txt	2024-12-09 21:43:54.335978284 +0200
+@@ -10,17 +10,5 @@
+     add_library(level-zero-ext INTERFACE)
+     set_property(TARGET level-zero-ext APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/level-zero-ext/>)
+     add_library(LevelZero::NPUExt ALIAS level-zero-ext)
+-endif()
+-
+-#
+-# yaml-cpp
+-#
+-
+-if(ENABLE_INTEL_NPU_PROTOPIPE)
+-    set(YAML_BUILD_SHARED_LIBS OFF)
+-    add_subdirectory(yaml-cpp EXCLUDE_FROM_ALL)
+-    # NB: Suppress warnings in yaml-cpp
+-    if(SUGGEST_OVERRIDE_SUPPORTED)
+-        target_compile_options(yaml-cpp PRIVATE -Wno-suggest-override)
+-    endif()
++    install(TARGETS level-zero-ext EXPORT OpenVINODeveloperTargets)
+ endif()
+--- a/src/plugins/intel_npu/src/backend/include/zero_memory.hpp	2025-01-30 16:54:27.550694466 +0000
++++ b/src/plugins/intel_npu/src/backend/include/zero_memory.hpp	2025-01-30 16:55:08.462018205 +0000
+@@ -5,7 +5,7 @@
+ #pragma once
+ 
+ #include <ze_api.h>
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include <map>
+ #include <string>
+--- a/src/plugins/intel_npu/src/backend/src/zero_pipeline.cpp	2025-01-30 16:59:40.615523874 +0000
++++ b/src/plugins/intel_npu/src/backend/src/zero_pipeline.cpp	2025-01-30 17:00:06.007930172 +0000
+@@ -5,7 +5,7 @@
+ #include "zero_pipeline.hpp"
+ 
+ #include <ze_api.h>
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include "intel_npu/common/itt.hpp"
+ #include "intel_npu/prefix.hpp"
+--- a/src/plugins/intel_npu/src/backend/src/zero_profiling.cpp	2025-01-30 17:01:12.269352224 +0000
++++ b/src/plugins/intel_npu/src/backend/src/zero_profiling.cpp	2025-01-30 17:02:55.013658475 +0000
+@@ -4,7 +4,7 @@
+ 
+ #include "zero_profiling.hpp"
+ 
+-#include <ze_graph_profiling_ext.h>
++#include "ze_graph_profiling_ext.h"
+ 
+ #include "intel_npu/config/compiler.hpp"
+ #include "intel_npu/profiling.hpp"
+--- a/src/plugins/intel_npu/src/backend/include/zero_infer_request.hpp	2025-01-30 17:07:27.738739813 +0000
++++ b/src/plugins/intel_npu/src/backend/include/zero_infer_request.hpp	2025-01-30 17:07:56.759752802 +0000
+@@ -5,7 +5,7 @@
+ #pragma once
+ 
+ #include <ze_api.h>
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include "intel_npu/common/npu.hpp"
+ #include "intel_npu/common/sync_infer_request.hpp"
+--- a/src/plugins/intel_npu/src/backend/include/zero_device.hpp	2025-01-30 17:09:06.727631829 +0000
++++ b/src/plugins/intel_npu/src/backend/include/zero_device.hpp	2025-01-30 17:09:28.566273820 +0000
+@@ -5,7 +5,7 @@
+ #pragma once
+ 
+ #include <ze_api.h>
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include "intel_npu/common/icompiled_model.hpp"
+ #include "intel_npu/common/npu.hpp"
+--- a/src/plugins/intel_npu/src/utils/include/intel_npu/utils/zero/zero_init.hpp	2025-01-30 17:11:23.387863315 +0000
++++ b/src/plugins/intel_npu/src/utils/include/intel_npu/utils/zero/zero_init.hpp	2025-01-30 17:12:15.351004206 +0000
+@@ -5,9 +5,9 @@
+ #pragma once
+ 
+ #include <ze_api.h>
+-#include <ze_command_queue_npu_ext.h>
+-#include <ze_graph_ext.h>
+-#include <ze_intel_npu_uuid.h>
++#include "ze_command_queue_npu_ext.h"
++#include "ze_graph_ext.h"
++#include "ze_intel_npu_uuid.h"
+ 
+ #include <memory>
+ 
+--- a/src/plugins/intel_npu/src/compiler_adapter/include/driver_compiler_adapter.hpp	2025-01-30 17:14:00.292277234 +0000
++++ b/src/plugins/intel_npu/src/compiler_adapter/include/driver_compiler_adapter.hpp	2025-01-30 17:14:25.236311534 +0000
+@@ -7,7 +7,7 @@
+ #pragma once
+ 
+ #include <ze_api.h>
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include <type_traits>
+ #include <utility>
+--- a/src/plugins/intel_npu/src/compiler_adapter/include/ze_graph_ext_wrappers.hpp	2025-01-30 17:15:30.489090023 +0000
++++ b/src/plugins/intel_npu/src/compiler_adapter/include/ze_graph_ext_wrappers.hpp	2025-01-30 17:15:49.345658116 +0000
+@@ -5,7 +5,7 @@
+ #pragma once
+ 
+ #include <ze_api.h>
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include <type_traits>
+ #include <utility>
+--- a/src/plugins/intel_npu/src/utils/include/intel_npu/utils/zero/zero_types.hpp	2025-01-30 17:17:34.037203346 +0000
++++ b/src/plugins/intel_npu/src/utils/include/intel_npu/utils/zero/zero_types.hpp	2025-01-30 17:18:09.895394136 +0000
+@@ -5,9 +5,9 @@
+ #pragma once
+ 
+ #include <ze_api.h>
+-#include <ze_command_queue_npu_ext.h>
+-#include <ze_graph_ext.h>
+-#include <ze_graph_profiling_ext.h>
++#include "ze_command_queue_npu_ext.h"
++#include "ze_graph_ext.h"
++#include "ze_graph_profiling_ext.h"
+ 
+ #include <string_view>
+ 
+--- a/src/plugins/intel_npu/src/utils/include/intel_npu/utils/zero/zero_utils.hpp	2025-01-30 17:19:01.314989832 +0000
++++ b/src/plugins/intel_npu/src/utils/include/intel_npu/utils/zero/zero_utils.hpp	2025-01-30 17:19:17.921341207 +0000
+@@ -6,7 +6,7 @@
+ 
+ #include <limits.h>
+ #include <ze_api.h>
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include "intel_npu/utils/logger/logger.hpp"
+ #include "intel_npu/utils/zero/zero_api.hpp"
+--- a/src/plugins/intel_npu/src/compiler_adapter/include/plugin_graph.hpp	2025-01-30 17:20:31.103798946 +0000
++++ b/src/plugins/intel_npu/src/compiler_adapter/include/plugin_graph.hpp	2025-01-30 17:21:08.007054462 +0000
+@@ -6,7 +6,7 @@
+ 
+ #pragma once
+ 
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include "intel_npu/common/igraph.hpp"
+ #include "intel_npu/icompiler.hpp"
+--- a/src/plugins/intel_npu/src/compiler_adapter/src/driver_compiler_adapter.cpp	2025-01-30 17:22:45.703009508 +0000
++++ b/src/plugins/intel_npu/src/compiler_adapter/src/driver_compiler_adapter.cpp	2025-01-30 17:23:09.819646893 +0000
+@@ -4,7 +4,7 @@
+ 
+ #include "driver_compiler_adapter.hpp"
+ 
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include <regex>
+ #include <string_view>
+--- a/src/plugins/intel_npu/src/compiler_adapter/include/driver_graph.hpp	2025-01-30 17:24:21.716872348 +0000
++++ b/src/plugins/intel_npu/src/compiler_adapter/include/driver_graph.hpp	2025-01-30 17:24:43.017813607 +0000
+@@ -6,7 +6,7 @@
+ 
+ #pragma once
+ 
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include "intel_npu/common/igraph.hpp"
+ #include "intel_npu/utils/zero/zero_init.hpp"
+--- a/src/plugins/intel_npu/src/compiler_adapter/src/plugin_compiler_adapter.cpp	2025-01-30 17:26:13.469876624 +0000
++++ b/src/plugins/intel_npu/src/compiler_adapter/src/plugin_compiler_adapter.cpp	2025-01-30 17:26:37.823924892 +0000
+@@ -4,7 +4,7 @@
+ 
+ #include "plugin_compiler_adapter.hpp"
+ 
+-#include <ze_graph_ext.h>
++#include "ze_graph_ext.h"
+ 
+ #include <memory>
+ #include <string>
+--- a/src/plugins/intel_npu/src/utils/src/zero/zero_init.cpp	2025-01-30 17:30:07.987984148 +0000
++++ b/src/plugins/intel_npu/src/utils/src/zero/zero_init.cpp	2025-01-30 17:30:24.141709170 +0000
+@@ -4,7 +4,7 @@
+ 
+ #include "intel_npu/utils/zero/zero_init.hpp"
+ 
+-#include <ze_command_queue_npu_ext.h>
++#include "ze_command_queue_npu_ext.h"
+ 
+ #include <regex>
+ 
+--- a/src/plugins/intel_npu/tools/compile_tool/CMakeLists.txt	2025-01-30 22:09:54.664509560 +0000
++++ b/src/plugins/intel_npu/tools/compile_tool/CMakeLists.txt	2025-01-30 22:10:59.261604242 +0000
+@@ -41,13 +41,6 @@
+ #
+ 
+ install(TARGETS ${TARGET_NAME}
+-        RUNTIME DESTINATION "tools/${TARGET_NAME}"
++        RUNTIME DESTINATION "bin"
+         COMPONENT ${NPU_INTERNAL_COMPONENT}
+         ${OV_CPACK_COMP_NPU_INTERNAL_EXCLUDE_ALL})
+-
+-if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
+-    install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/README.md"
+-            DESTINATION "tools/${TARGET_NAME}"
+-            COMPONENT ${NPU_INTERNAL_COMPONENT}
+-            ${OV_CPACK_COMP_NPU_INTERNAL_EXCLUDE_ALL})
+-endif()

diff --git a/openvino.spec b/openvino.spec
index 581310e..90bc7de 100644
--- a/openvino.spec
+++ b/openvino.spec
@@ -42,17 +42,21 @@ URL:		https://github.com/openvinotoolkit/openvino
 Source0:	%url/archive/%{version}/%{name}-%{version}.tar.gz
 Source1:	https://github.com/openvinotoolkit/oneDNN/archive/c60a9946aa2386890e5c9f5587974facb7624227/onednn-c60a994.tar.gz
 Source2:	https://github.com/openvinotoolkit/mlas/archive/d1bc25ec4660cddd87804fcf03b2411b5dfb2e94/mlas-d1bc25e.tar.gz
-Source3:	dependencies.cmake
-Source4:	pyproject.toml
+Source3:	https://github.com/intel/level-zero-npu-extensions/archive/110f48ee8eda22d8b40daeeecdbbed0fc3b08f8b/level-zero-npu-extensions-110f48e.tar.gz
+Source4:	dependencies.cmake
+Source5:	pyproject.toml
 
 Patch0:		openvino-fedora.patch
 # Support numpy 2.2.0
-Patch1:         https://github.com/openvinotoolkit/openvino/pull/28039.patch
+Patch1:		https://github.com/openvinotoolkit/openvino/pull/28039.patch
+Patch2:		npu-level-zero.patch
 
 ExclusiveArch:	x86_64
 
 BuildRequires:	cmake
 BuildRequires:	gcc-c++
+BuildRequires:	gflags-devel
+BuildRequires:	oneapi-level-zero-devel
 BuildRequires:	patchelf
 BuildRequires:	pugixml-devel
 BuildRequires:	pybind11-devel
@@ -64,6 +68,7 @@ BuildRequires:	numpy
 BuildRequires:	ShellCheck
 BuildRequires:	zlib-ng-compat-devel
 BuildRequires:	xbyak-devel
+BuildRequires:	yaml-cpp-devel
 BuildRequires:	tbb-devel
 # forked version of OpenVINO oneDNN does not have a proper version
 Provides:	bundled(onednn)
@@ -124,7 +129,7 @@ runtime.
 
 # Remove the thirdparty deps
 rm -rf thirdparty/*
-cp %{SOURCE3} thirdparty/
+cp %{SOURCE4} thirdparty/
 
 # Intel-cpu-plugin thirdparty deps
 tar xf %{SOURCE1}
@@ -132,9 +137,15 @@ cp -r oneDNN-*/* src/plugins/intel_cpu/thirdparty/onednn
 tar xf %{SOURCE2}
 cp -r mlas-*/* src/plugins/intel_cpu/thirdparty/mlas
 
+# Intel-npu-plugin thirdparty deps
+rm -rf src/plugins/intel_npu/thirdparty/yaml-cpp
+tar xf %{SOURCE3}
+cp -r level-*/* src/plugins/intel_npu/thirdparty/level-zero-ext
+cp %{SOURCE6} src/plugins/intel_npu/cmake
+
 # python:prep
 sed -i '/openvino-telemetry/d' src/bindings/python/requirements.txt
-cp %{SOURCE4} src/bindings/python
+cp %{SOURCE5} src/bindings/python
 
 # gcc 15 include cstdint
 sed -i '/#include <vector>.*/a#include <cstdint>' src/core/include/openvino/core/type/bfloat16.hpp
@@ -146,6 +157,7 @@ sed -i '/#include <vector>.*/a#include <cstdint>' src/core/include/openvino/core
 sed -i '/#include <vector>.*/a#include <cstdint>' src/core/dev_api/openvino/core/type/nf4.hpp
 sed -i '/#include <utility>.*/a#include <cstdint>' src/common/snippets/include/snippets/utils/debug_caps_config.hpp
 sed -i '/#include <utility>.*/a#include <cstdint>' src/plugins/intel_cpu/src/utils/debug_caps_config.h
+sed -i '/#include <vector>.*/a#include <cstdint>' src/plugins/intel_npu/src/plugin/npuw/partitioning/online/graph.hpp
 
 %build
 %cmake \
@@ -178,7 +190,9 @@ sed -i '/#include <utility>.*/a#include <cstdint>' src/plugins/intel_cpu/src/uti
 	-DENABLE_MLAS_FOR_CPU_DEFAULT=ON \
 	-DENABLE_INTEL_GNA=OFF \
 	-DENABLE_INTEL_GPU=OFF \
-	-DENABLE_INTEL_NPU=OFF \
+	-DENABLE_SYSTEM_LEVEL_ZERO=ON \
+	-DENABLE_INTEL_NPU=ON \
+	-DENABLE_NPU_PLUGIN_ENGINE=ON \
 	-DENABLE_ONEDNN_FOR_GPU=OFF \
 	-DENABLE_MULTI=ON \
 	-DENABLE_PROXY=ON \
@@ -241,6 +255,8 @@ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:%{buildroot}%{_libdir} PYTHONPATH=%{buildroot}%
 %{_libdir}/%{name}-%{version}/lib%{name}_auto_batch_plugin.so
 %{_libdir}/%{name}-%{version}/lib%{name}_hetero_plugin.so
 %{_libdir}/%{name}-%{version}/lib%{name}_intel_cpu_plugin.so
+%{_libdir}/%{name}-%{version}/lib%{name}_intel_npu_plugin.so
+%{_bindir}/compile_tool
 
 %files -n lib%{name}-ir-frontend
 %{_libdir}/lib%{name}_ir_frontend.so.%{version}

diff --git a/pyproject.toml b/pyproject.toml
index fa3098a..5be2e69 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "openvino"
-version = "2024.2.0"
+version = "2024.5.0"
 dependencies = [
   "numpy>1.16.6",
   "packaging",

diff --git a/sources b/sources
index 379a061..4895a44 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,4 @@
 SHA512 (openvino-2024.5.0.tar.gz) = b003647de3de49e605943488ca9b2e5196b20d95b3152f0c2331c283d4cb253d1bbbb9cde04fa82733d3871d7128c6db6210957660bd89f26462798f782eca47
 SHA512 (onednn-c60a994.tar.gz) = cc91f5b2ece1c3f14af308e3da436447d07964fa5ffa848c571fe67197a367673bf7bf9cd979fab0c9b216f92c611bd8df7018ec8e080f10759582629c10cb9d
 SHA512 (mlas-d1bc25e.tar.gz) = 8d6dd319924135b7b22940d623305bf200b812ae64cde79000709de4fad429fbd43794301ef16e6f10ed7132777b7a73e9f30ecae7c030aea80d57d7c0ce4500
+SHA512 (level-zero-npu-extensions-110f48e.tar.gz) = aaaeecad6c00489b652cd94d63ed0c1e59eb0eaed8b463198b40f1af3944004b072808ccc3074b71d825e9f0f37bf76fedf296961bb18959ef66a699b71fec41

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-06-10 16:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-10 16:59 [rpms/openvino] origin/pr/7/head: intel_npu plugin enabled Ali Erdinc Koroglu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox