diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-08-20 18:19:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-20 18:19:37 +0100 |
commit | a1812f934f4e0830ed3c2f147d13837ccf67f2bd (patch) | |
tree | 529c8c5896548f035ac58a8c453dc1049cc17a40 /candle-examples/examples/quantized | |
parent | e3d2786ffbd8926cff2789162ad10ac3c4989160 (diff) | |
download | candle-a1812f934f4e0830ed3c2f147d13837ccf67f2bd.tar.gz candle-a1812f934f4e0830ed3c2f147d13837ccf67f2bd.tar.bz2 candle-a1812f934f4e0830ed3c2f147d13837ccf67f2bd.zip |
Add a yolo-v3 example. (#528)
* Add a couple functions required for yolo.
* Add the yolo-v3 example.
* Add minimum and maximum.
* Use the newly introduced maximum.
* Cuda support for min/max + add some testing.
* Allow for more tests to work with accelerate.
* Fix a typo.
Diffstat (limited to 'candle-examples/examples/quantized')
-rw-r--r-- | candle-examples/examples/quantized/main.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/candle-examples/examples/quantized/main.rs b/candle-examples/examples/quantized/main.rs index 45e75de1..2dc46217 100644 --- a/candle-examples/examples/quantized/main.rs +++ b/candle-examples/examples/quantized/main.rs @@ -1,4 +1,10 @@ #![allow(dead_code)] +#[cfg(feature = "mkl")] +extern crate intel_mkl_src; + +#[cfg(feature = "accelerate")] +extern crate accelerate_src; + use clap::Parser; use std::collections::HashMap; use std::io::Write; |