niklas-heer / speed-comparison

A repo which compares the speed of different programming languages.
https://niklas-heer.github.io/speed-comparison
MIT License
508 stars 79 forks source link

Rust nightly is atm broken #124

Open niklas-heer opened 1 year ago

niklas-heer commented 1 year ago

I would like help with getting rust nightly working again.

I disabled as here: 4f33fb2

Starwort commented 9 months ago
--- a/src/leibniz_nightly.rs
+++ b/src/leibniz_nightly.rs
@@ -1,7 +1,8 @@
 #![feature(portable_simd)]
 use std::fs::File;
 use std::io::prelude::*;
-use std::simd::{SimdFloat, f64x8, u32x8};
+use std::simd::num::{SimdFloat, SimdUint};
+use std::simd::{f64x8, u32x8};

Confirmed to work on rustc 1.77.0-nightly (d5fd09972 2024-01-22)