Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package intel-opencl for openSUSE:Factory checked in at 2023-04-01 21:13:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/intel-opencl (Old) and /work/SRC/openSUSE:Factory/.intel-opencl.new.9019 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "intel-opencl" Sat Apr 1 21:13:20 2023 rev:7 rq:1075700 version:23.05.25593.11 Changes: -------- --- /work/SRC/openSUSE:Factory/intel-opencl/intel-opencl.changes 2023-03-27 18:18:09.783702713 +0200 +++ /work/SRC/openSUSE:Factory/.intel-opencl.new.9019/intel-opencl.changes 2023-04-01 21:13:23.156119042 +0200 @@ -1,0 +2,8 @@ +Tue Mar 28 13:20:16 UTC 2023 - Patrik Jakobsson <[email protected]> + +- Update to version 23.05.25593.11 +- Now builds against level-zero +- New fixes for building with gcc13 +- supersedes 0001-Include-memory-in-generate_cpp_array.cpp.patch + +------------------------------------------------------------------- Old: ---- 0001-Include-memory-in-generate_cpp_array.cpp.patch compute-runtime-21.43.21438.tar.gz New: ---- compute-runtime-23.05.25593.11.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ intel-opencl.spec ++++++ --- /var/tmp/diff_new_pack.Qpkgrk/_old 2023-04-01 21:13:23.636121542 +0200 +++ /var/tmp/diff_new_pack.Qpkgrk/_new 2023-04-01 21:13:23.640121563 +0200 @@ -17,19 +17,19 @@ Name: intel-opencl -Version: 21.43.21438 +Version: 23.05.25593.11 Release: 1%{?dist} Summary: Intel(R) Graphics Compute Runtime for OpenCL(TM) License: MIT Group: Development/Libraries/C and C++ URL: https://github.com/intel/compute-runtime Source0: https://github.com/intel/compute-runtime/archive/%{version}/compute-runtime-%{version}.tar.gz -Patch0: 0001-Include-memory-in-generate_cpp_array.cpp.patch -Patch1: 0001-include-cstdint-needed-when-compiling-with-gcc13.patch +Patch0: 0001-include-cstdint-needed-when-compiling-with-gcc13.patch BuildRequires: cmake BuildRequires: gcc-c++ +BuildRequires: level-zero-devel BuildRequires: libigc-devel -BuildRequires: libigdgmm-devel >= 21.2.2 +BuildRequires: libigdgmm-devel >= 22.3.0 BuildRequires: ninja BuildRequires: pkgconfig BuildRequires: pkgconfig(igc-opencl) @@ -79,6 +79,8 @@ %files %{_libdir}/intel-opencl/libigdrcl.so %{_libdir}/libocloc.so +%{_libdir}/libze_intel_gpu.so.1 +%{_libdir}/libze_intel_gpu.so.1.3.25593 %{_bindir}/ocloc %{_libdir}/intel-opencl %if 0%{?suse_version} > 1500 ++++++ 0001-include-cstdint-needed-when-compiling-with-gcc13.patch ++++++ --- /var/tmp/diff_new_pack.Qpkgrk/_old 2023-04-01 21:13:23.664121688 +0200 +++ /var/tmp/diff_new_pack.Qpkgrk/_new 2023-04-01 21:13:23.664121688 +0200 @@ -1,17 +1,96 @@ -From b05bb79915a6ad56b5509eac2d2599bb3b81e076 Mon Sep 17 00:00:00 2001 +From 1a10a8f7c432caaf31eb00f79941a221e512f5b3 Mon Sep 17 00:00:00 2001 From: Patrik Jakobsson <[email protected]> Date: Mon, 27 Mar 2023 14:01:39 +0200 Subject: [PATCH] include cstdint needed when compiling with gcc13 Signed-off-by: Patrik Jakobsson <[email protected]> --- - shared/source/os_interface/linux/print.cpp | 1 + - shared/source/tbx/tbx_sockets.h | 1 + - shared/source/tbx/tbx_sockets_imp.h | 1 + - 3 files changed, 3 insertions(+) + shared/source/ail/ail_configuration.cpp | 1 + + shared/source/ail/ail_configuration.h | 1 + + shared/source/compiler_interface/external_functions.h | 1 + + shared/source/os_interface/linux/drm_debug.h | 1 + + shared/source/os_interface/linux/pci_path.h | 1 + + shared/source/os_interface/linux/pmt_util.h | 1 + + shared/source/os_interface/linux/print.cpp | 1 + + shared/source/tbx/tbx_sockets.h | 1 + + shared/source/tbx/tbx_sockets_imp.h | 1 + + shared/source/utilities/const_stringref.h | 1 + + 10 files changed, 10 insertions(+) +diff --git a/shared/source/ail/ail_configuration.cpp b/shared/source/ail/ail_configuration.cpp +index 0231132..8567883 100644 +--- a/shared/source/ail/ail_configuration.cpp ++++ b/shared/source/ail/ail_configuration.cpp +@@ -5,6 +5,7 @@ + * + */ + ++#include <cstdint> + #include "shared/source/ail/ail_configuration.h" + + #include "shared/source/helpers/hash.h" +diff --git a/shared/source/ail/ail_configuration.h b/shared/source/ail/ail_configuration.h +index 9538128..f6e2834 100644 +--- a/shared/source/ail/ail_configuration.h ++++ b/shared/source/ail/ail_configuration.h +@@ -10,6 +10,7 @@ + #include "igfxfmid.h" + + #include <string> ++#include <cstdint> + + /* + * AIL (Application Intelligence Layer) is a set of per-application controls that influence driver behavior. +diff --git a/shared/source/compiler_interface/external_functions.h b/shared/source/compiler_interface/external_functions.h +index 1dbe542..e9d3dee 100644 +--- a/shared/source/compiler_interface/external_functions.h ++++ b/shared/source/compiler_interface/external_functions.h +@@ -10,6 +10,7 @@ + #include <string> + #include <unordered_map> + #include <vector> ++#include <cstdint> + + namespace NEO { + struct KernelDescriptor; +diff --git a/shared/source/os_interface/linux/drm_debug.h b/shared/source/os_interface/linux/drm_debug.h +index 8e5180c..1ff2bf4 100644 +--- a/shared/source/os_interface/linux/drm_debug.h ++++ b/shared/source/os_interface/linux/drm_debug.h +@@ -10,6 +10,7 @@ + #include <array> + #include <string> + #include <utility> ++#include <cstdint> + + namespace NEO { + enum class DrmResourceClass : uint32_t { +diff --git a/shared/source/os_interface/linux/pci_path.h b/shared/source/os_interface/linux/pci_path.h +index c72c1d6..1ea52c1 100644 +--- a/shared/source/os_interface/linux/pci_path.h ++++ b/shared/source/os_interface/linux/pci_path.h +@@ -9,6 +9,7 @@ + + #include <optional> + #include <string> ++#include <cstdint> + + namespace NEO { + +diff --git a/shared/source/os_interface/linux/pmt_util.h b/shared/source/os_interface/linux/pmt_util.h +index 28ecad3..ed5beaf 100644 +--- a/shared/source/os_interface/linux/pmt_util.h ++++ b/shared/source/os_interface/linux/pmt_util.h +@@ -11,6 +11,7 @@ + #include <poll.h> + #include <string> + #include <string_view> ++#include <cstdint> + + namespace NEO { + diff --git a/shared/source/os_interface/linux/print.cpp b/shared/source/os_interface/linux/print.cpp -index d6a3def..da9ad99 100644 +index 9562bad..07c1e94 100644 --- a/shared/source/os_interface/linux/print.cpp +++ b/shared/source/os_interface/linux/print.cpp @@ -9,6 +9,7 @@ @@ -45,6 +124,18 @@ +#include <cstdint> namespace NEO { + +diff --git a/shared/source/utilities/const_stringref.h b/shared/source/utilities/const_stringref.h +index c5a3869..8c39315 100644 +--- a/shared/source/utilities/const_stringref.h ++++ b/shared/source/utilities/const_stringref.h +@@ -8,6 +8,7 @@ + #pragma once + + #include <string> ++#include <cstdint> + + namespace NEO { -- 2.40.0 ++++++ compute-runtime-21.43.21438.tar.gz -> compute-runtime-23.05.25593.11.tar.gz ++++++ ++++ 866190 lines of diff (skipped)
