tenferro-gpu 0.3.0

CubeCL-backed CUDA and WebGPU provider backends for tenferro tensors.
1
2
3
4
5
6
7
8
9
use tenferro_gpu::webgpu::WebGpuExecSession;

fn escape<'a>(session: WebGpuExecSession<'a>) -> WebGpuExecSession<'static> {
    session
}

fn main() {
    let _ = escape;
}