Skip to content

Commit 8741ea8

Browse files
committed
feat: make simd_avx2 module public for ladybug-rs dot_i8 access
ladybug-rs needs ndarray::simd_avx2::dot_i8() for VNNI int8 dot product. Changed from pub(crate) to pub. https://claude.ai/code/session_01CdqyUTUfjKZuk8YGJzv6LB
1 parent baba895 commit 8741ea8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ pub(crate) mod simd;
238238
pub(crate) mod simd_avx512;
239239
#[cfg(all(feature = "std", target_arch = "x86_64"))]
240240
#[allow(missing_docs)]
241-
pub(crate) mod simd_avx2;
241+
pub mod simd_avx2;
242242

243243
/// Pluggable linear algebra backends (native SIMD, MKL, OpenBLAS).
244244
#[cfg(feature = "std")]

0 commit comments

Comments
 (0)