Flesh out some ops bits.

This commit is contained in:
laurent
2023-06-19 19:28:33 +01:00
parent ce718bb807
commit 8e2c534d1f
3 changed files with 35 additions and 9 deletions

View File

@ -4,4 +4,5 @@ use crate::Tensor;
pub(crate) enum Op {
Add(Tensor, Tensor),
Mul(Tensor, Tensor),
// TODO: Support for custom ops.
}