Skeleton implementation for softmax.

This commit is contained in:
laurent
2023-06-23 22:00:13 +01:00
parent 5d44e76e3f
commit 8443963d4f
5 changed files with 32 additions and 0 deletions

View File

@ -147,6 +147,10 @@ impl CpuStorage {
}
}
pub(crate) fn divide_by_sum_over_dim(&mut self, _shape: &Shape, _dim: usize) {
todo!()
}
pub(crate) fn affine_impl(
&self,
shape: &Shape,