summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-02-25 09:00:33 +0100
committerJoonas Niilola <juippis@gentoo.org>2023-02-25 10:09:54 +0200
commit6b09c28299d9c4dea55e058d442d04d1d4e2bdf6 (patch)
tree80720581cd537ec0a3d3828c67f40d484718aa0f /dev-cpp/highway
parentmedia-sound/beets: remove unused patches (diff)
downloadgentoo-6b09c28299d9c4dea55e058d442d04d1d4e2bdf6.tar.gz
gentoo-6b09c28299d9c4dea55e058d442d04d1d4e2bdf6.tar.bz2
gentoo-6b09c28299d9c4dea55e058d442d04d1d4e2bdf6.zip
dev-cpp/highway: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/29782 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-cpp/highway')
-rw-r--r--dev-cpp/highway/files/highway-0.16.0-fix-AVX512-detection-on-IceLakeClient.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-cpp/highway/files/highway-0.16.0-fix-AVX512-detection-on-IceLakeClient.patch b/dev-cpp/highway/files/highway-0.16.0-fix-AVX512-detection-on-IceLakeClient.patch
deleted file mode 100644
index de157925c6ef..000000000000
--- a/dev-cpp/highway/files/highway-0.16.0-fix-AVX512-detection-on-IceLakeClient.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-https://github.com/google/highway/commit/daf441c78191b3433410498d27a5bfdfdf93a142
-
-diff --git a/hwy/targets.cc b/hwy/targets.cc
-index 2a0ab4ef..7e7e2d79 100644
---- a/hwy/targets.cc
-+++ b/hwy/targets.cc
-@@ -328,8 +328,8 @@ uint32_t SupportedTargets() {
- if (!IsBitSet(xcr0, 2)) {
- bits &= ~uint32_t(HWY_AVX2 | HWY_AVX3 | HWY_AVX3_DL);
- }
-- // ZMM + opmask
-- if ((xcr0 & 0x70) != 0x70) {
-+ // opmask, ZMM lo/hi
-+ if (!IsBitSet(xcr0, 5) || !IsBitSet(xcr0, 6) || !IsBitSet(xcr0, 7)) {
- bits &= ~uint32_t(HWY_AVX3 | HWY_AVX3_DL);
- }
- }