Skip to content

Commit e9f5a6d

Browse files
committed
disable +neon SIMD feature for aarch64: see rust-lang/rust#111800
1 parent fb36b43 commit e9f5a6d

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ rustflags = [
1212

1313
[target.aarch64-unknown-linux-gnu]
1414
rustflags = [
15-
"-C", "target-feature=+neon,+sve,+fma",
15+
"-C", "target-feature=+sve,+fma", # +neon,
1616
]

src/least_squares.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(stdarch_arm_neon_intrinsics)]
2-
31
use faer::linalg::solvers::SolverCore;
42
use faer::prelude::*;
53
use faer::Side;

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(stdarch_arm_neon_intrinsics)]
21
use pyo3::types::PyModule;
32
use pyo3::{pymodule, PyResult, Python};
43

0 commit comments

Comments
 (0)