diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-12-22 00:28:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 00:28:50 +0100 |
commit | ceb78d3e28977389d88f676ff24dd07fd602ae96 (patch) | |
tree | ad56fe3bcc2a56fc4db64f477e6915f25b6a5455 /candle-core/benches | |
parent | f6408a37794c35f57225ccae16d67fcebea6b1cb (diff) | |
download | candle-ceb78d3e28977389d88f676ff24dd07fd602ae96.tar.gz candle-ceb78d3e28977389d88f676ff24dd07fd602ae96.tar.bz2 candle-ceb78d3e28977389d88f676ff24dd07fd602ae96.zip |
Sketch the minimal mamba example. (#1465)
* Sketch the minimal mamba example.
* Fix rustfmt.
* Forward pass for mamba.
* Finish the forward pass.
* Inference fixes.
* Bugfixes.
* More fixes.
* Add a readme.
Diffstat (limited to 'candle-core/benches')
-rw-r--r-- | candle-core/benches/matmul.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/candle-core/benches/matmul.rs b/candle-core/benches/matmul.rs index 8732f451..83679771 100644 --- a/candle-core/benches/matmul.rs +++ b/candle-core/benches/matmul.rs @@ -40,4 +40,3 @@ fn criterion_benchmark(c: &mut Criterion) { criterion_group!(benches, criterion_benchmark); criterion_main!(benches); - |