summaryrefslogtreecommitdiff
path: root/candle-core/src/tensor.rs
Commit message (Expand)AuthorAgeFilesLines
* fix typo (#2606)Andrei Fajardo2024-11-231-1/+1
* Add max-all/min-all. (#2616)Laurent Mazare2024-11-141-0/+36
* Testcases (#2567)Anubhab Bandyopadhyay2024-10-171-3/+4
* Improve error message (#2485)ivnsch2024-09-201-1/+5
* Add documentation examples for `Tensor::i` and `Tensor::narrow` methods (#2308)Carsten Csiky2024-08-101-0/+75
* Fix log_sum_exp to handle large positive/negative inputs (#2367)Yun-Jhong Wu2024-08-011-3/+13
* Add support for Llama 3.1 (#2359)Eric Buehler2024-07-261-3/+3
* Add StorageRef. (#2113)Laurent Mazare2024-04-231-1/+9
* Handle zero dims in some simple operations. (#2064)Laurent Mazare2024-04-151-0/+21
* Add support for "sign" on tensors (#2012)Thomas Santerre2024-04-041-0/+1
* More flexible matmul contiguity checks. (#1949)Laurent Mazare2024-03-271-0/+10
* Preliminary support for inplace ops. (#1921)Laurent Mazare2024-03-231-0/+4
* Add the alloc_uninit function. (#1901)Laurent Mazare2024-03-221-4/+4
* Prepare for the custom-op extension. (#1892)Laurent Mazare2024-03-211-93/+1
* Avoid copying the data on squeeze and unsqueeze. (#1884)Laurent Mazare2024-03-201-2/+27
* Optimize the cat operation on contiguous tensors (#1855)Laurent Mazare2024-03-171-147/+1
* Add grads for interpolate1d (#1742)Kirpal Grewal2024-02-221-1/+1
* feat: add silu activation function (#1706)OlivierDehaene2024-02-141-0/+1
* Detach the tensors on batch-norm eval. (#1702)Laurent Mazare2024-02-131-3/+3
* Fix clippy lints. (#1667)Laurent Mazare2024-02-061-4/+5
* add roll function to tensor (#1666)Jiayu Liu2024-02-061-0/+28
* Add the pow operator. (#1583)Laurent Mazare2024-01-131-1/+11
* Validate the kernel size in pooling ops. (#1473)Laurent Mazare2023-12-231-12/+16
* Merge pull request #1318 from huggingface/metal4Nicolas Patry2023-12-201-4/+1
|\
| * More cleanup.Nicolas Patry2023-12-151-4/+1
| * Lots of updates including some stack of command buffers.nicolas2023-12-121-1/+1
* | Add a simple full method. (#1455)Laurent Mazare2023-12-171-0/+10
* | Fix a couple typos (#1451)Laurent Mazare2023-12-171-2/+2
* | Add logsumexp function (#1424)Wenqing Zong2023-12-121-0/+7
* | Upsample grad (#1420)KGrewal12023-12-101-1/+5
|/
* Add a basic implementation for slice-assign. (#1377)Laurent Mazare2023-11-261-0/+58
* Cleanup fixed a few ops removed debugging scaffolding.Nicolas Patry2023-11-201-8/+5
* Tmp state.Nicolas Patry2023-11-201-1/+7
* Refactor to simplify our lives for settings the params in the encoder.Nicolas Patry2023-11-201-0/+4
* Add a simple implementation of cumsum. (#1334)Laurent Mazare2023-11-151-0/+22
* Add the tril/triu/eye ops. (#1333)Laurent Mazare2023-11-151-0/+24
* Add the var method. (#1315)Laurent Mazare2023-11-101-0/+14
* Metal part 1 - Scaffolding for metal. (#1308)Nicolas Patry2023-11-101-1/+8
* [ONNX] Support a couple more ops. (#1284)Laurent Mazare2023-11-061-0/+23
* Lazy detach. (#1242)Laurent Mazare2023-11-021-10/+16
* Support negative steps in arange. (#1218)Laurent Mazare2023-10-301-3/+13
* Allow for different behavior between training and eval (#1213)Laurent Mazare2023-10-291-0/+5
* Add some missing backtraces. (#1193)Laurent Mazare2023-10-271-6/+12
* Enable the test for meshgrid + fix the implementation. (#1175)Laurent Mazare2023-10-251-24/+28
* Implemented meshgrid (#1174)Wouter Doppenberg2023-10-251-0/+63
* Expose the track-op method. (#1148)Laurent Mazare2023-10-221-1/+1
* Add get_on_dim. (#1142)Laurent Mazare2023-10-211-0/+18
* Add pad_with_same. (#1127)Laurent Mazare2023-10-181-0/+40
* Better error message when overflowing in narrow. (#1119)Laurent Mazare2023-10-181-9/+17
* Use full tensors for zeros and ones (#1071)Laurent Mazare2023-10-111-16/+6