public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Ali Erdinc Koroglu <aekoroglu@linux.intel.com>
To: git-commits@fedoraproject.org
Subject: [rpms/openvino] origin/pr/7/head: enable all frontend plugins
Date: Wed, 10 Jun 2026 16:59:22 GMT [thread overview]
Message-ID: <178111076281.1.13033215079567550109.rpms-openvino-8f00146cbfca@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/openvino
Branch : origin/pr/7/head
Commit : 8f00146cbfca345a6382786b72dc10de34cfb3cb
Author : Ali Erdinc Koroglu <aekoroglu@linux.intel.com>
Date : 2025-04-25T20:28:23+03:00
Stats : +57/-5 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/openvino/c/8f00146cbfca345a6382786b72dc10de34cfb3cb?branch=origin/pr/7/head
Log:
enable all frontend plugins
---
diff --git a/openvino.spec b/openvino.spec
index a029835..14d0304 100644
--- a/openvino.spec
+++ b/openvino.spec
@@ -54,6 +54,8 @@ ExclusiveArch: x86_64
BuildRequires: cmake
BuildRequires: gcc
BuildRequires: gcc-c++
+BuildRequires: flatbuffers-compiler
+BuildRequires: flatbuffers-devel
BuildRequires: gflags-devel
BuildRequires: glibc-devel
BuildRequires: json-devel
@@ -68,6 +70,7 @@ BuildRequires: python3-pip
BuildRequires: python3-setuptools
BuildRequires: python3-pytest
BuildRequires: python3-wheel
+BuildRequires: snappy-devel
BuildRequires: numpy
BuildRequires: zlib-ng-compat-devel
BuildRequires: xbyak-devel
@@ -87,6 +90,9 @@ Provides: bundled(level-zero-npu-extensions)
Requires: lib%{name}-ir-frontend = %{version}
Requires: lib%{name}-pytorch-frontend = %{version}
Requires: lib%{name}-onnx-frontend = %{version}
+Requires: lib%{name}-paddle-frontend = %{version}
+Requires: lib%{name}-tensorflow-frontend = %{version}
+Requires: lib%{name}-tensorflow-lite-frontend = %{version}
Requires: numpy
Recommends: %{name}-plugins = %{version}
@@ -107,7 +113,8 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
%description plugins
The OpenVINO plugins package provides support for various hardware devices.
-It includes plugins for auto, auto_batch, hetero, intel_cpu and template.
+It includes auto, auto_batch, hetero, intel_cpu, intel_npu, intel_gpu and
+template plugins.
%package -n lib%{name}-ir-frontend
Summary: OpenVINO IR Frontend
@@ -134,6 +141,34 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
The main responsibility of the ONNX Frontend is to import ONNX models and
convert them into the ov::Model representation.
+%package -n lib%{name}-paddle-frontend
+Summary: OpenVINO Paddle Frontend
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description -n lib%{name}-paddle-frontend
+OpenVINO Paddle Frontend is responsible for reading and converting
+a PaddlePaddle model and operators and maps them semantically to
+the OpenVINO opset.
+
+%package -n lib%{name}-tensorflow-frontend
+Summary: OpenVINO Tensorflow Frontend
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description -n lib%{name}-tensorflow-frontend
+OpenVINO TensorFlow Frontend is responsible for reading and converting
+a TensorFlow model to an ov::Model object that further can be serialized into
+the Intermediate Representation (IR) format.
+
+%package -n lib%{name}-tensorflow-lite-frontend
+Summary: OpenVINO Tensorflow-lite Frontend
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description -n lib%{name}-tensorflow-lite-frontend
+OpenVINO TensorFlow Lite Frontend is responsible for reading and converting
+a TensorFlow model to an ov::Model object that further can be serialized into
+the Intermediate Representation (IR) format with lower latency and smaller
+binary size on mobile and edge devices.
+
%package -n python3-%{name}
Summary: OpenVINO Python API
Requires: %{name}%{?_isa} = %{version}-%{release}
@@ -229,12 +264,12 @@ sed -i '/#include <memory>.*/a#include <cstdint>' src/plugins/intel_npu/tools/pr
-DENABLE_PROXY=ON \
-DENABLE_TEMPLATE=ON \
-DENABLE_OV_ONNX_FRONTEND=ON \
- -DENABLE_OV_PADDLE_FRONTEND=OFF \
- -DENABLE_OV_JAX_FRONTEND=OFF \
+ -DENABLE_OV_PADDLE_FRONTEND=ON \
+ -DENABLE_OV_JAX_FRONTEND=ON \
-DENABLE_OV_IR_FRONTEND=ON \
-DENABLE_OV_PYTORCH_FRONTEND=ON \
- -DENABLE_OV_TF_FRONTEND=OFF \
- -DENABLE_OV_TF_LITE_FRONTEND=OFF \
+ -DENABLE_OV_TF_FRONTEND=ON \
+ -DENABLE_OV_TF_LITE_FRONTEND=ON \
-DENABLE_PYTHON=ON \
-DPython3_EXECUTABLE=%{python3} \
-DENABLE_WHEEL=OFF \
@@ -242,6 +277,8 @@ sed -i '/#include <memory>.*/a#include <cstdint>' src/plugins/intel_npu/tools/pr
-DENABLE_SYSTEM_LIBS_DEFAULT=ON \
-DENABLE_SYSTEM_OPENCL=ON \
-DENABLE_SYSTEM_PUGIXML=ON \
+ -DENABLE_SYSTEM_FLATBUFFERS=ON \
+ -DENABLE_SYSTEM_SNAPPY=ON \
-DENABLE_SYSTEM_PROTOBUF=ON \
-DProtobuf_LIBRARIES=%{_libdir} \
-DProtobuf_INCLUDE_DIRS=%{_includedir} \
@@ -286,6 +323,9 @@ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:%{buildroot}%{_libdir} PYTHONPATH=%{buildroot}%
%{_libdir}/lib%{name}_c.so
%{_libdir}/lib%{name}_pytorch_frontend.so
%{_libdir}/lib%{name}_onnx_frontend.so
+%{_libdir}/lib%{name}_paddle_frontend.so
+%{_libdir}/lib%{name}_tensorflow_frontend.so
+%{_libdir}/lib%{name}_tensorflow_lite_frontend.so
%{_libdir}/cmake/openvino-%{version}
%{_libdir}/pkgconfig/%{name}.pc
@@ -314,6 +354,18 @@ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:%{buildroot}%{_libdir} PYTHONPATH=%{buildroot}%
%{_libdir}/lib%{name}_onnx_frontend.so.%{version}
%{_libdir}/lib%{name}_onnx_frontend.so.%{so_ver}
+%files -n lib%{name}-paddle-frontend
+%{_libdir}/lib%{name}_paddle_frontend.so.%{version}
+%{_libdir}/lib%{name}_paddle_frontend.so.%{so_ver}
+
+%files -n lib%{name}-tensorflow-frontend
+%{_libdir}/lib%{name}_tensorflow_frontend.so.%{version}
+%{_libdir}/lib%{name}_tensorflow_frontend.so.%{so_ver}
+
+%files -n lib%{name}-tensorflow-lite-frontend
+%{_libdir}/lib%{name}_tensorflow_lite_frontend.so.%{version}
+%{_libdir}/lib%{name}_tensorflow_lite_frontend.so.%{so_ver}
+
%files -n python3-%{name}
%{python3_sitearch}/%{name}
%{python3_sitearch}/%{name}-%{version}.dist-info
reply other threads:[~2026-06-10 16:59 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178111076281.1.13033215079567550109.rpms-openvino-8f00146cbfca@fedoraproject.org \
--to=aekoroglu@linux.intel.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox