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

A new commit has been pushed.

Repo   : rpms/openvino
Branch : origin/pr/8/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/8/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

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

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

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-11 16:10 [rpms/openvino] origin/pr/8/head: enable all frontend plugins 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