Sketch the conv1d op.

This commit is contained in:
laurent
2023-07-04 10:52:34 +01:00
parent e6b01d0c18
commit 3aac1047fe
7 changed files with 97 additions and 1 deletions

View File

@ -12,6 +12,14 @@ pub(crate) enum Op {
Embedding(Tensor, Tensor),
WhereCond(Tensor, Tensor, Tensor),
#[allow(dead_code)]
Conv1D {
arg: Tensor,
kernel: Tensor,
padding: usize,
stride: usize,
},
Cat(Vec<Tensor>, usize),
#[allow(dead_code)] // add is currently unused.