1 2 3 4 5 6 7 8 9
use knok::prelude::*; #[knok::graph] fn add4(x: Tensor1<f32, 4>, y: Tensor1<f32, 4>) -> Tensor1<f32, 4> { x + y } fn main() {}