Skip to content

Commit 1799281

Browse files
committed
build: remove simd_support feature
This is no longer used, now that we default to pulp for runtime CPU feature detection.
1 parent 3582d1d commit 1799281

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
uses: actions-rs/cargo@v1
2828
with:
2929
command: check
30-
args: --features=nightly
3130
- name: Run cargo check
3231
uses: actions-rs/cargo@v1
3332
with:
@@ -57,7 +56,6 @@ jobs:
5756
uses: actions-rs/cargo@v1
5857
with:
5958
command: test
60-
args: --features=nightly
6159
- name: Run cargo test
6260
uses: actions-rs/cargo@v1
6361
with:

Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,3 @@ equator = "0.4.2"
4545
[[bench]]
4646
name = "sample"
4747
harness = false
48-
49-
[features]
50-
nightly = ["simd_support"]
51-
52-
simd_support = []

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg_attr(feature = "simd_support", feature(portable_simd))]
2-
#![cfg_attr(feature = "simd_support", feature(slice_as_chunks))]
31
//! Sample from posterior distributions using the No U-turn Sampler (NUTS).
42
//! For details see the original [NUTS paper](https://arxiv.org/abs/1111.4246)
53
//! and the more recent [introduction](https://arxiv.org/abs/1701.02434).

0 commit comments

Comments
 (0)