Skip to main content

subspace_proof_of_space_wgpu/
lib.rs

1//! Subspace proof of space plotting on the GPU via wgpu (Vulkan/Metal).
2//!
3//! Host-only: proofs are produced on the GPU by the vendored `ab-proof-of-space-gpu`, and records
4//! are encoded here with subspace's KZG scheme, so a GPU-plotted sector reads back byte-for-byte the
5//! same as the CPU one.
6
7#![feature(portable_simd)]
8
9mod host;
10
11pub use ab_proof_of_space_gpu::{Backend, Device, DeviceType};
12pub use host::WgpuDevice;