Add the op.

This commit is contained in:
laurent
2023-06-19 18:34:54 +01:00
parent 844704de5c
commit ce718bb807
5 changed files with 45 additions and 13 deletions

7
src/op.rs Normal file
View File

@ -0,0 +1,7 @@
use crate::Tensor;
#[allow(dead_code)]
pub(crate) enum Op {
Add(Tensor, Tensor),
Mul(Tensor, Tensor),
}