Skip to content

Commit 6e6bc85

Browse files
committed
fix: make simd module public (was pub(crate))
Consumers (bgz-tensor, thinking-engine) need ndarray::simd::bf16_to_f32_batch and other polyfill exports. Was incorrectly restricted to pub(crate). https://claude.ai/code/session_01ChLvBfpJS8dQhHxRD4pYNp
1 parent 2312633 commit 6e6bc85

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
@@ -232,7 +232,7 @@ mod dimension;
232232
/// Portable SIMD types — `crate::simd::f32x16` today, `std::simd::f32x16` tomorrow.
233233
#[cfg(feature = "std")]
234234
#[allow(missing_docs)]
235-
pub(crate) mod simd;
235+
pub mod simd;
236236
#[cfg(all(feature = "std", target_arch = "x86_64"))]
237237
#[allow(missing_docs, dead_code)]
238238
pub(crate) mod simd_avx512;

0 commit comments

Comments
 (0)