Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions rust/lance-linalg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ cc = "1.0.83"
# This requires GCC 12 / Clang 6 or later. (To get AVX-512 support,
# you need Clang 11 or later.)
fp16kernels = []
# Enable nightly-only features like loongarch64 SIMD intrinsics.
nightly = []

[target.'cfg(target_os = "linux")'.dev-dependencies]
pprof = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion rust/lance-linalg/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! High-performance [Apache Arrow](https://docs.rs/arrow/latest/arrow/) native Linear Algebra algorithms.

#![deny(clippy::unused_async)]
#![cfg_attr(target_arch = "loongarch64", feature(stdarch_loongarch))]
#![cfg_attr(all(target_arch = "loongarch64", feature = "nightly"), feature(stdarch_loongarch))]

use arrow_schema::ArrowError;

Expand Down
Loading
Loading