Skip to content

Commit

Permalink
use newly introduced stdarch features for avx512 to compiler on night…
Browse files Browse the repository at this point in the history
…ly (#6)

* use newly introduced stdarch features for avx512 to compiler on nightly

see

rust-lang/rust#117372

* bump version to 0.18.7
  • Loading branch information
IceTDrinker committed Feb 8, 2024
1 parent 7e96a0b commit 5582685
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pulp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pulp"
version = "0.18.6"
version = "0.18.7"
edition = "2021"
authors = ["sarah <>"]
description = "Safe generic simd"
Expand Down
2 changes: 1 addition & 1 deletion pulp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
clippy::too_many_arguments,
clippy::type_complexity
)]
#![cfg_attr(feature = "nightly", feature(stdsimd), feature(avx512_target_feature))]
#![cfg_attr(feature = "nightly", feature(stdarch_x86_avx512), feature(avx512_target_feature))]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(docsrs, feature(doc_cfg))]

Expand Down

0 comments on commit 5582685

Please sign in to comment.