* Only optimize float tensors.

* Use full tensors for zeros and ones.

* Add a benchmark for the matmul slowness.

* Add the convmixer model.

* Proper adaptive pooling.
This commit is contained in:
Laurent Mazare
2023-10-11 19:24:32 +02:00
committed by GitHub
parent 37dbbff261
commit 89b525b5e7
3 changed files with 85 additions and 2 deletions

View File

@ -1,5 +1,6 @@
pub mod bert;
pub mod bigcode;
pub mod convmixer;
pub mod dinov2;
pub mod efficientnet;
pub mod falcon;