Moving to gemm and adding matmul backprop.

- Tentative `T` operator.
This commit is contained in:
Nicolas Patry
2023-06-21 23:59:25 +02:00
parent 9ea220fc6e
commit 04cf14f35a
5 changed files with 170 additions and 76 deletions

View File

@ -40,6 +40,9 @@ pub enum Error {
shape: Shape,
},
#[error("temporary error where matmul doesn't support arbitrary striding")]
UnexpectedStriding,
#[error(transparent)]
Cuda(#[from] crate::CudaError),
}