Cognis Weave treats model weights, KV-caches, tensors, and gradients as first-class traffic — a zero-copy data plane that never touches a control encoder, torrent-class distribution for checkpoints, a stable transfer contract for disaggregated inference, and portable collectives. The same protocol reaches from an RDMA fabric to a field radio.
Every capability below is patterned on shipped, measured systems — safetensors, Arrow, NIXL, NCCL, Kraken — composed under one certification gate.
Two-plane spine: compact schema'd control messages (µs-class encode cost, irrelevant at control frequency)
A.Frame bulk objects are offset-addressable by construction (name → dtype/shape/offset/length header + flat region, safetensors/Arrow pattern): any consumer can range-fetch, parallelize, resume, and mmap — the single serialization decision behind 76x model-load speedups and seconds-scale cold starts for 200+ GiB models, now a wire-format guarantee.
Model and dataset distribution rides Corpus: weights are Merkle-verified, FastCDC-deduped, swarm-fetched from LAN peers first — a fleet pulling a new checkpoint behaves like Kraken (20k 1 GB blobs in under 30 s), and incremental fine-tune deltas transfer only changed chunks.
A.Descriptor gives disaggregated inference a stable transfer contract: register memory once, post async scatter/gather descriptor lists with out-of-order completion, over pluggable bearer functors (RDMA/GPUDirect where NIC and GPU share a PCIe switch — topology is part of the stated correctness envelope — TCP, NVMe-oF, object storage), the NIXL shape vLLM already treats as a swappable connector.
A.Collective factors collectives exactly as NCCL does — fused primitives × algorithms × transports — but the transport axis is a certified Bearer Functor, so a ring allreduce is provably the same protocol value over NVLink, IB, or an OCS-scheduled lambda fabric; ring stays bandwidth-optimal (2(N−1)/N lower bound stated, not 'beaten').
Tail latency is the design metric, not the mean (UEC rationale: synchronous step time = max over workers): T.Spray provides per-flow packet spraying, out-of-order delivery with in-order completion, and selective retransmission, benchmarked at P99.9.
| Today's stack | The tax | Cognis Weave |
|---|---|---|
| gRPC / Protobuf for tensors | ~65% CPU on tag-based encode; 4 MB message caps; manual chunking | Zero-copy A.Frame: wire layout equals memory layout — mmap-able, range-fetchable, never through the control encoder |
| HTTP/2 flow control | Control-window stalls preempt bulk tensor streams | Per-semantic-stream, payload-class-aware credit — control never preempts tensors |
| Ad-hoc weight rsync / S3 pulls | N nodes × origin bandwidth; no verification; cold starts | Content-addressed, Merkle-verified, fountain-swarmed — LAN-first, Kraken-scale fan-out, deltas only |
| Bespoke KV-cache connectors | One connector per deployment; brittle prefill→decode handoff | A.Descriptor: register memory once, async scatter/gather, pluggable RDMA / TCP / NVMe-oF / object store |
| NCCL locked to one transport | Collectives assume a fixed fabric | A.Collective: same ring/tree allreduce provably identical over NVLink, IB, or an OCS-scheduled lambda |
# distribute a 200 GiB checkpoint to a fleet — content-addressed, verified, swarmed cognis share ./llama-70b.safetensors --seed # → cognis://b3:9f2c… (Merkle root) # every node pulls LAN-first; any RaptorQ symbol from any peer completes a block cognis get cognis://b3:9f2c… --into /models --profile fabric # disaggregated inference: register KV-cache memory once, stream out-of-order cognis xfer kv --peer decode-07 --backend rdma --descriptors ./kv.plan # bandwidth-limited link? carry the tensor semantically, not byte-exact cognis send ./grads.arrow --fidelity task-sufficient # DeepJSCC lane
Certified generators for AI traffic — core data-plane plus advanced semantic and resource-assisted modes from Solutions.
See the AI data plane in the architecture, the semantic-transport solution, or install and try it.