Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package onednn for openSUSE:Factory checked in at 2021-06-16 20:34:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/onednn (Old) and /work/SRC/openSUSE:Factory/.onednn.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "onednn" Wed Jun 16 20:34:38 2021 rev:6 rq:900181 version:2.2.4 Changes: -------- --- /work/SRC/openSUSE:Factory/onednn/onednn.changes 2021-06-15 16:38:54.481856738 +0200 +++ /work/SRC/openSUSE:Factory/.onednn.new.32437/onednn.changes 2021-06-16 20:36:27.939286534 +0200 @@ -1,0 +2,6 @@ +Tue Jun 15 12:10:39 UTC 2021 - Guillaume GARDET <guillaume.gar...@opensuse.org> + +- Fix build on aarch64: + * onednn-xbyak-aarch64.patch + +------------------------------------------------------------------- New: ---- onednn-xbyak-aarch64.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ onednn.spec ++++++ --- /var/tmp/diff_new_pack.o8kfJk/_old 2021-06-16 20:36:28.423287360 +0200 +++ /var/tmp/diff_new_pack.o8kfJk/_new 2021-06-16 20:36:28.423287360 +0200 @@ -39,6 +39,8 @@ Source0: https://github.com/oneapi-src/oneDNN/archive/v%{version}/oneDNN-%{version}.tar.gz # PATCH-FIX-UPSTREAM onednn-1045.patch -- https://github.com/oneapi-src/oneDNN/pull/1045 Patch0: onednn-1045.patch +# PATCH-FIX-UPSTREAM - https://github.com/oneapi-src/oneDNN/issues/1085 +Patch1: onednn-xbyak-aarch64.patch BuildRequires: cmake BuildRequires: doxygen BuildRequires: fdupes ++++++ onednn-xbyak-aarch64.patch ++++++ >From ecb940c16aef22ee5a3aa64a3745c277f6de52c0 Mon Sep 17 00:00:00 2001 From: Kentaro Kawakami <kawakam...@fujitsu.com> Date: Sun, 13 Jun 2021 13:14:34 +0900 Subject: [PATCH] fix gcc-11 compile error --- src/cpu/aarch64/xbyak_aarch64/xbyak_aarch64/xbyak_aarch64.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpu/aarch64/xbyak_aarch64/xbyak_aarch64/xbyak_aarch64.h b/src/cpu/aarch64/xbyak_aarch64/xbyak_aarch64/xbyak_aarch64.h index 20e4665..7e03812 100644 --- a/src/cpu/aarch64/xbyak_aarch64/xbyak_aarch64/xbyak_aarch64.h +++ b/src/cpu/aarch64/xbyak_aarch64/xbyak_aarch64/xbyak_aarch64.h @@ -28,6 +28,7 @@ #include <deque> #include <initializer_list> #include <iostream> +#include <limits> #include <list> #include <type_traits> #include <unordered_map>