docs: refresh honesty notes for rewired demos, consolidation audit, ServingTokenizer
CI / Format Check (push) Failing after 5s
CI / Clippy Check (push) Failing after 6s
Performance Benchmarks / Run Benchmarks (push) Failing after 7s
CI / Build (ubuntu-latest) (push) Failing after 6s
CI / Build (macos-latest) (push) Failing after 9s
CI / Test (macos-latest) (push) Has been skipped
CI / Test (ubuntu-latest) (push) Has been skipped
CI / Python Bindings (maturin) (macos-latest) (push) Has been skipped
CI / Python Bindings (maturin) (ubuntu-latest) (push) Has been skipped
CI / WASM Build + Size Check (push) Has been skipped
CI / Distributed Training Tests (push) Has been skipped
Documentation / Build User Guide (push) Successful in 6s
Documentation / Build API Documentation (push) Failing after 11s
CI / Build CPU-Only (Explicit) (push) Failing after 37s
CI / CI Success (push) Failing after 1s

Co-Authored-By: Claude Fable 5 <[email protected]>
This commit is contained in:
osobh
2026-07-10 03:52:13 -07:00
co-authored by Claude Fable 5
parent 68481ef314
commit 74d3db7ee7
+1 -1
View File
@@ -158,4 +158,4 @@ All in `crates/training/rtx-transformers/src/ssl/`. 163 tests passing.
Production-ready. 113 crates. Full transformer stack, Flash Attention (v2+v3), MoE, speculative decoding (Medusa/EAGLE/Lookahead), federated learning, NAS, medical/neuroimaging/scientific domain stacks, complete JEPA platform (Batches 2026). 30+ demo applications. 13,000+ tests. Production-ready. 113 crates. Full transformer stack, Flash Attention (v2+v3), MoE, speculative decoding (Medusa/EAGLE/Lookahead), federated learning, NAS, medical/neuroimaging/scientific domain stacks, complete JEPA platform (Batches 2026). 30+ demo applications. 13,000+ tests.
Known honesty notes (2026-07-09 sweep): `rtx-backend-sycl` is an experimental skeleton (ops return NotImplemented). Some demos are pure simulations that don't exercise framework crates (`rtx-distllm-demo`, `rtx-model-zoo`'s MockInferenceEngine, `rtx-inference-profiler`). MoE and flash-attention have duplicated implementations pending consolidation (see `docs/consolidation.md`). Serving/streaming return 503/error until an engine+model is attached (no more mock responses); tokenization at the serving boundary is byte-level until a real tokenizer is threaded through. Known honesty notes (2026-07-09 sweep, updated 2026-07-10): `rtx-backend-sycl` is an experimental skeleton (ops return NotImplemented). The formerly-simulated demos now run real compute (`rtx-distllm-demo` real tensors + measured metrics with only the network topology simulated; `rtx-model-zoo` drives a real InferenceEngine with untrained weights and labeled toy output proxies; `rtx-inference-profiler` profiles real matmul/softmax). MoE/flash-attention duplication was audited — see `docs/consolidation.md`: the flagged sites were scaffolding/stubs, not duplicates; `revolutionary/orchestrator_core.rs` execute paths are no-op stubs and `tensor_core_kernels.rs` is a planner with no kernels. Serving/streaming return 503/error until an engine+model is attached; tokenization uses `ServingTokenizer` (HuggingFace tokenizer.json or byte-level fallback).