Skip to content

Commit 5582685

Browse files
authored
use newly introduced stdarch features for avx512 to compiler on nightly (#6)
* use newly introduced stdarch features for avx512 to compiler on nightly see rust-lang/rust#117372 * bump version to 0.18.7
1 parent 7e96a0b commit 5582685

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pulp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pulp"
3-
version = "0.18.6"
3+
version = "0.18.7"
44
edition = "2021"
55
authors = ["sarah <>"]
66
description = "Safe generic simd"

pulp/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
clippy::too_many_arguments,
6363
clippy::type_complexity
6464
)]
65-
#![cfg_attr(feature = "nightly", feature(stdsimd), feature(avx512_target_feature))]
65+
#![cfg_attr(feature = "nightly", feature(stdarch_x86_avx512), feature(avx512_target_feature))]
6666
#![cfg_attr(not(feature = "std"), no_std)]
6767
#![cfg_attr(docsrs, feature(doc_cfg))]
6868

0 commit comments

Comments
 (0)