summaryrefslogtreecommitdiff
path: root/candle-core/src/accelerate.rs
Commit message (Collapse)AuthorAgeFilesLines
* feat: add silu activation function (#1706)OlivierDehaene2024-02-141-0/+32
| | | | | | | | | * feat: add silu activation function * use silu/arg in grad * update candle-nn * use node
* Accelerate support for gelu. (#782)Laurent Mazare2023-09-081-0/+32
|
* Fix the accelerate build (#678)Laurent Mazare2023-08-301-0/+22
| | | | | * Cosmetic changes. * Fix the accelerate build for tanh.
* Add a yolo-v3 example. (#528)Laurent Mazare2023-08-201-0/+40
| | | | | | | | | | | | | | | * 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.
* More accelerate optimizations (#427)Laurent Mazare2023-08-131-1/+240
| | | | | | | | | | | * Add more tracing to the whisper example. * Support accelerate in more examples. * Use accelerate for pointwise functions. * Use accelerate for binary operations too. * Bugfix for binary operation: use the rhs before the lhs.
* Support the Accelerate BLAS on macOS. (#325)Laurent Mazare2023-08-051-0/+111
* Add the accelerate feature. * Ffi tweaks.