summaryrefslogtreecommitdiff
path: root/sci-libs/ideep
diff options
context:
space:
mode:
Diffstat (limited to 'sci-libs/ideep')
-rw-r--r--sci-libs/ideep/Manifest1
-rw-r--r--sci-libs/ideep/files/ideep-3.1.1-20230825.patch36
2 files changed, 0 insertions, 37 deletions
diff --git a/sci-libs/ideep/Manifest b/sci-libs/ideep/Manifest
index 78f638180ae2..a42d13b4f07e 100644
--- a/sci-libs/ideep/Manifest
+++ b/sci-libs/ideep/Manifest
@@ -1,4 +1,3 @@
-AUX ideep-3.1.1-20230825.patch 1390 BLAKE2B 2787650021a21073aff0e200d8cdd6e47768b863d2b32275b5108f41d1d97f6caf40b40c4b2ebc18d92dbe2136684891f88e19365984aa1a91f5074633ee4279 SHA512 f2608fc21d64b6aaf59daf3af8003fad529decf5011601190bead62e0fe8e19d353b7e2522b9b7dba0ac3ce8ca2322b9bea1f2735f0144a747296b84566ac6b1
DIST ideep-3.3.2.tar.gz 57631 BLAKE2B 57ec733a3bf9e6e8ebdebdeb63000adcef8e9ecda00118c88bca24a80fd71602b5dc3d46892410d0231d2ecf2111d5a08c3a4e95bb785964cfc4c5d6c81537f0 SHA512 e0a9ca99f25b488e38b8887099c015ed0e67cc5c350c922b85f746e25c88e07a3291f8f5d71aef5f37c72814f32e00d81ec16853a425e0fe735c71c5fccc6a41
DIST ideep-3.5.3_p2.tar.gz 63267 BLAKE2B 8797b5ff222824ef135496c39cdeb41c646ae2d7538a75688d554933529de1fa5126fa19e95d0d0199e6cef348c6ede49ccb7a10235d9f434c4f108991c1b299 SHA512 033ec14e50b50fde7f213656c784cc81a12b4ff0a67b019e8efc00e0703bdff5b5aed44bad5cab75e50d014ea9db5a2ec5490f62ff7208824d08a5df451cc64a
EBUILD ideep-3.3.2.ebuild 423 BLAKE2B c100045c7f17e2cdb2f8e8e01ced4ec8513cd1c02425488ae94020ae9d3d0d71eb8d6b762f868e8f171aaf5c5511cc98c4f65c0375ce8f103d87af6063afaea8 SHA512 e064358c5264aa2eeaaf13b5904a20c126b317cc13351569d099ead1ff544af249647850b0ab61f0a6a543aa854d12f93926f73bcb3a060ecf998b3c297e0fcd
diff --git a/sci-libs/ideep/files/ideep-3.1.1-20230825.patch b/sci-libs/ideep/files/ideep-3.1.1-20230825.patch
deleted file mode 100644
index a8625e758b00..000000000000
--- a/sci-libs/ideep/files/ideep-3.1.1-20230825.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 6f4d653802bd43bc4eda515460df9f90353dbebe Mon Sep 17 00:00:00 2001
-From: leslie-fang-intel <leslie.fang@intel.com>
-Date: Fri, 25 Aug 2023 13:37:20 +0800
-Subject: [PATCH] reland remove conv weight scale reciprocal (#226)
-
----
- include/ideep.hpp | 2 +-
- include/ideep/operators/conv.hpp | 3 ---
- 2 files changed, 1 insertion(+), 4 deletions(-)
-
-diff --git a/include/ideep.hpp b/include/ideep.hpp
-index 7e02c366..a11c3553 100644
---- a/include/ideep.hpp
-+++ b/include/ideep.hpp
-@@ -48,6 +48,6 @@
- #define IDEEP_VERSION_MAJOR DNNL_VERSION_MAJOR
- #define IDEEP_VERSION_MINOR DNNL_VERSION_MINOR
- #define IDEEP_VERSION_PATCH DNNL_VERSION_PATCH
--#define IDEEP_VERSION_REVISION 0
-+#define IDEEP_VERSION_REVISION 1
-
- #endif
-diff --git a/include/ideep/operators/conv.hpp b/include/ideep/operators/conv.hpp
-index 49677ff6..27ee84b6 100644
---- a/include/ideep/operators/conv.hpp
-+++ b/include/ideep/operators/conv.hpp
-@@ -161,9 +161,6 @@ struct conv_deconv_utils {
- weights_scales_in.size(), oc_per_group, groups, is_deconv);
- auto wei_scales = weights_scales_in;
- if (!std::all_of(wei_scales.begin(), wei_scales.end(), [](float i){ return i == 1.0f; })) {
-- for (auto& s : wei_scales) {
-- s = 1.0 / s;
-- }
- op_attr.set_scales(DNNL_ARG_WEIGHTS, wei_scale_mask, wei_scales);
- }
- if (dst_scales_in[0] != 1.0f) {