Skip to content

Commit 9bd8cc7

Browse files
authored
Merge pull request #65 from AdaWorldAPI/claude/unified-query-planner-aW8ax
Claude/unified query planner a w8ax
2 parents 03f1aa0 + 4988fd1 commit 9bd8cc7

8 files changed

Lines changed: 4284 additions & 645 deletions

File tree

Cargo.lock

Lines changed: 3176 additions & 626 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ libc = { version = "0.2.82", optional = true }
4848

4949
matrixmultiply = { version = "0.3.2", default-features = false, features=["cgemm"] }
5050
blake3 = "1"
51+
p64 = { path = "crates/p64" }
52+
phyllotactic-manifold = { path = "crates/phyllotactic-manifold" }
5153

5254
serde = { version = "1.0", optional = true, default-features = false, features = ["alloc"] }
5355
rawpointer = { version = "0.2" }
@@ -105,11 +107,7 @@ members = [
105107
"ndarray-rand",
106108
"crates/*",
107109
]
108-
exclude = [
109-
# burn crate requires edition 2024 (Rust 1.85+) and pinned git deps.
110-
# Built separately: cargo check --manifest-path crates/burn/Cargo.toml
111-
"crates/burn",
112-
]
110+
exclude = []
113111
default-members = [
114112
".",
115113
"ndarray-rand",

crates/burn/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Goal: replace macerator SIMD with crate::simd F32x16 + LazyLock dispatch,
1111
add bgz-tensor AttentionTable compiled attention path.
1212
"""
1313

14+
[lib]
15+
name = "burn_ndarray"
16+
path = "src/lib.rs"
17+
1418
[features]
1519
default = ["std", "simd", "multi-threads"]
1620
multi-threads = ["rayon", "ndarray/rayon", "matrixmultiply/threading"]

src/hpc/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@ pub mod crystal_encoder;
122122
#[allow(missing_docs)]
123123
pub mod udf_kernels;
124124

125+
// p64 bridge: Palette64/3D attention, NARS, CausalEdge64 compat
126+
#[allow(missing_docs)]
127+
pub mod p64_bridge;
128+
125129
// Session C: bgz17 dual-path integration
126130
#[allow(missing_docs)]
127131
pub mod bgz17_bridge;

0 commit comments

Comments
 (0)