aetheric-gpu 0.1.0-alpha

Aetheric Silicon: turn this host's RAM into a Digital GPU endpoint
docs.rs failed to build aetheric-gpu-0.1.0-alpha
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

digital-gpu — Aetheric Silicon's top-level API.

Turns this host's RAM into a virtual GPU endpoint with:

  • 32× effective capacity via binary GEMM compression (1 GB RAM → 32 GB virtual VRAM)
  • Slow-hill degradation curve: smooth bandwidth drop from DRAM → swap → cloud
  • Optional LAN cluster pooling: multiple Aetheric nodes share their RAM

Usage: let gpu = digital_gpu::boot(GpuSpec::new() .effective_gb(32) // 32 GB effective VRAM .physical_gb(1) // backed by 1 GB of this host's RAM .enable_cluster() // discover and pool LAN peers )?;

// Now use gpu.vram() to allocate, gpu.curve() to query bandwidth at any capacity let buf = gpu.vram().allocate(2 * 1024 * 1024 * 1024)?; // 2 GB virtual gpu.gemm().dispatch(...); // run compute