Skip to content
Merged
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
3,802 changes: 3,176 additions & 626 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ libc = { version = "0.2.82", optional = true }

matrixmultiply = { version = "0.3.2", default-features = false, features=["cgemm"] }
blake3 = "1"
p64 = { path = "crates/p64" }
phyllotactic-manifold = { path = "crates/phyllotactic-manifold" }

serde = { version = "1.0", optional = true, default-features = false, features = ["alloc"] }
rawpointer = { version = "0.2" }
Expand Down Expand Up @@ -105,11 +107,7 @@ members = [
"ndarray-rand",
"crates/*",
]
exclude = [
# burn crate requires edition 2024 (Rust 1.85+) and pinned git deps.
# Built separately: cargo check --manifest-path crates/burn/Cargo.toml
"crates/burn",
]
exclude = []
default-members = [
".",
"ndarray-rand",
Expand Down
4 changes: 4 additions & 0 deletions crates/burn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Goal: replace macerator SIMD with crate::simd F32x16 + LazyLock dispatch,
add bgz-tensor AttentionTable compiled attention path.
"""

[lib]
name = "burn_ndarray"
path = "src/lib.rs"

[features]
default = ["std", "simd", "multi-threads"]
multi-threads = ["rayon", "ndarray/rayon", "matrixmultiply/threading"]
Expand Down
4 changes: 4 additions & 0 deletions src/hpc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ pub mod crystal_encoder;
#[allow(missing_docs)]
pub mod udf_kernels;

// p64 bridge: Palette64/3D attention, NARS, CausalEdge64 compat
#[allow(missing_docs)]
pub mod p64_bridge;

// Session C: bgz17 dual-path integration
#[allow(missing_docs)]
pub mod bgz17_bridge;
Expand Down
Loading
Loading