From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9003715802F for ; Sat, 25 Feb 2023 08:10:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4D96E087A; Sat, 25 Feb 2023 08:10:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABEBBE087A for ; Sat, 25 Feb 2023 08:10:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 746CB33BE19 for ; Sat, 25 Feb 2023 08:10:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BB778BA for ; Sat, 25 Feb 2023 08:10:09 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1677312594.6b09c28299d9c4dea55e058d442d04d1d4e2bdf6.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/highway/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/highway/files/highway-0.16.0-fix-AVX512-detection-on-IceLakeClient.patch X-VCS-Directories: dev-cpp/highway/files/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 6b09c28299d9c4dea55e058d442d04d1d4e2bdf6 X-VCS-Branch: master Date: Sat, 25 Feb 2023 08:10:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 53900862-c9db-4877-8f08-4747d6bf6fe8 X-Archives-Hash: dea3e0fbd249bd0c414a651a56585507 commit: 6b09c28299d9c4dea55e058d442d04d1d4e2bdf6 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sat Feb 25 08:00:33 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Feb 25 08:09:54 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b09c282 dev-cpp/highway: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/29782 Signed-off-by: Joonas Niilola gentoo.org> ...y-0.16.0-fix-AVX512-detection-on-IceLakeClient.patch | 17 ----------------- 1 file changed, 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); - } - }