Skip to content

Commit 87e74fe

Browse files
committed
Rustup to rustc 1.82.0-nightly (a32d4a0e8 2024-08-21)
1 parent 46b7db1 commit 87e74fe

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
From 5489384bc265e9e6fc2efaa63d93a4d51ebec2f5 Mon Sep 17 00:00:00 2001
2+
From: bjorn3 <[email protected]>
3+
Date: Thu, 22 Aug 2024 19:22:58 +0000
4+
Subject: [PATCH] Disable broken reduce_sum test
5+
6+
It was broken by an upstream change to the .sum() implementation on
7+
float iterators.
8+
---
9+
crates/core_simd/tests/ops_macros.rs | 1 +
10+
1 file changed, 1 insertion(+)
11+
12+
diff --git a/crates/core_simd/tests/ops_macros.rs b/crates/core_simd/tests/ops_macros.rs
13+
index aa565a1..5e6ac41 100644
14+
--- a/crates/core_simd/tests/ops_macros.rs
15+
+++ b/crates/core_simd/tests/ops_macros.rs
16+
@@ -646,6 +646,7 @@ macro_rules! impl_float_tests {
17+
}
18+
19+
fn reduce_sum<const LANES: usize>() {
20+
+ return;
21+
test_helpers::test_1(&|x| {
22+
test_helpers::prop_assert_biteq! (
23+
Vector::<LANES>::from_array(x).reduce_sum(),
24+
--
25+
2.34.1
26+

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2024-08-19"
2+
channel = "nightly-2024-08-22"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
44
profile = "minimal"

0 commit comments

Comments
 (0)