From d869a87631d241033fcda953b4b070d10ed2db3c Mon Sep 17 00:00:00 2001 From: Alex Touchet Date: Mon, 6 Sep 2021 14:53:49 -0700 Subject: [PATCH 1/2] Badge and other assorted fixes --- README.md | 5 ++--- examples/fannkuch-redux-nosimd.rs | 2 +- examples/nbody-nosimd.rs | 2 +- examples/spectral-norm-nosimd.rs | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 438d12e..7d5567b 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ # `simd` -[![Build Status](https://travis-ci.org/hsivonen/simd.svg?branch=master)](https://travis-ci.org/hsivonen/simd) -[![crates.io](https://meritbadge.herokuapp.com/simd)](https://crates.io/crates/simd) +[![crates.io](https://img.shields.io/crates/v/simd.svg)](https://crates.io/crates/simd) [![docs.rs](https://docs.rs/simd/badge.svg)](https://docs.rs/simd/) -_This crate no londer builds as of Rust 1.33 nightly_ due to the [removal of compiler features](https://github.com/rust-lang/rust/pull/57416) that this crates depends on. See the [`packed_simd`](https://crates.io/crates/packed_simd) crate instead. +_This crate no londer builds as of Rust 1.33 nightly_ due to the [removal of compiler features](https://github.com/rust-lang/rust/pull/57416) that this crates depends on. See the [`packed_simd_2`](https://crates.io/crates/packed_simd_2) crate instead. `simd` offers a basic interface to the SIMD functionality of CPUs. (Note: Even prior to Rust 1.33, this crate fails to build unless the target is aarch64, x86_64, i686 (i.e. SSE2 enabled; not i586) or an ARMv7 target (thumb or not) with NEON enabled.) diff --git a/examples/fannkuch-redux-nosimd.rs b/examples/fannkuch-redux-nosimd.rs index fa30b22..aff40ac 100644 --- a/examples/fannkuch-redux-nosimd.rs +++ b/examples/fannkuch-redux-nosimd.rs @@ -1,5 +1,5 @@ // The Computer Language Benchmarks Game -// http://benchmarksgame.alioth.debian.org/ +// https://benchmarksgame-team.pages.debian.net/benchmarksgame/ // // contributed by the Rust Project Developers // contributed by TeXitoi diff --git a/examples/nbody-nosimd.rs b/examples/nbody-nosimd.rs index d5f1bb4..6d6f6c9 100644 --- a/examples/nbody-nosimd.rs +++ b/examples/nbody-nosimd.rs @@ -1,5 +1,5 @@ // The Computer Language Benchmarks Game -// http://benchmarksgame.alioth.debian.org/ +// https://benchmarksgame-team.pages.debian.net/benchmarksgame/ // // contributed by the Rust Project Developers // contributed by TeXitoi diff --git a/examples/spectral-norm-nosimd.rs b/examples/spectral-norm-nosimd.rs index 919f9c6..06ff494 100644 --- a/examples/spectral-norm-nosimd.rs +++ b/examples/spectral-norm-nosimd.rs @@ -1,5 +1,5 @@ // The Computer Language Benchmarks Game -// http://benchmarksgame.alioth.debian.org/ +// https://benchmarksgame-team.pages.debian.net/benchmarksgame/ // // contributed by the Rust Project Developers // contributed by TeXitoi From 0a8e155246789251983c7e9cd5ffb1707b364e66 Mon Sep 17 00:00:00 2001 From: Alex Touchet Date: Wed, 30 Aug 2023 13:30:53 -0700 Subject: [PATCH 2/2] Revert packed_simd changes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d5567b..c1b3efa 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # `simd` [![crates.io](https://img.shields.io/crates/v/simd.svg)](https://crates.io/crates/simd) -[![docs.rs](https://docs.rs/simd/badge.svg)](https://docs.rs/simd/) +[![docs.rs](https://docs.rs/simd/badge.svg)](https://docs.rs/simd) -_This crate no londer builds as of Rust 1.33 nightly_ due to the [removal of compiler features](https://github.com/rust-lang/rust/pull/57416) that this crates depends on. See the [`packed_simd_2`](https://crates.io/crates/packed_simd_2) crate instead. +_This crate no londer builds as of Rust 1.33 nightly_ due to the [removal of compiler features](https://github.com/rust-lang/rust/pull/57416) that this crates depends on. See the [`packed_simd`](https://crates.io/crates/packed_simd) crate instead. `simd` offers a basic interface to the SIMD functionality of CPUs. (Note: Even prior to Rust 1.33, this crate fails to build unless the target is aarch64, x86_64, i686 (i.e. SSE2 enabled; not i586) or an ARMv7 target (thumb or not) with NEON enabled.)