tokitai-operator 0.1.0

Verified DL kernel compiler: formally-checked GEMM, p-adic, sheaf, contract-carrying ops. Paper-artifact grade.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Binary entry point: prints a hello message.
//!
//! The actual binary targets live under `src/bin/` (gated on the
//! relevant feature flags). `src/main.rs` is a stub kept so the
//! crate can be invoked as `cargo run --bin tokitai-operator` and
//! produce a friendly hello message. All real entry points are
//! the `[[bin]]` targets in `Cargo.toml` and the
//! `cargo run --example ...` targets in `examples/`.
//!
fn main() {
    println!("Hello, world!");
}