summaryrefslogtreecommitdiff
path: root/candle-core/src/error.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add a Context trait similar to anyhow::Context. (#2676)Laurent Mazare2024-12-221-5/+65
| | | | | * Add a Context trait similar to anyhow::Context. * Switch two unwrap to context.
* 20241118 docs (#2629)zachcp2024-11-191-0/+1
| | | | | | | | | | | | | | | | | * module docs * varbuilder gguf docs * add a link to gguf files * small additonal mod doc titles * safetensor docs * more core docs * more module docs in canlde_core * 2 more link fixes
* Support for UG kernels. (#2579)Laurent Mazare2024-10-271-0/+7
| | | | | * Support for UG kernels. * Add a dedicated test.
* Small cleanups to the llama multi-process example. (#2098)Laurent Mazare2024-04-201-1/+5
|
* Metal part 1 - Scaffolding for metal. (#1308)Nicolas Patry2023-11-101-1/+7
| | | | | * Metal part 1 - Scaffolding for metal. * Remove tracing.
* Implemented meshgrid (#1174)Wouter Doppenberg2023-10-251-0/+3
| | | | | | | | | | | * Implemented meshgrid * Resolved feedback from LaurentMazare * Rustfmt * Updated docstring * Removed outdated error mode from docstring
* Segment Anything - process images (#766)Laurent Mazare2023-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Start processing images. * Add LayerNorm2d. * Properly use LayerNorm2d. * Tweak eps. * Use LayerNorm on inputs with a rank different from 3. * Window partitioning. * Fix a couple todos. * More todos. * Hard-code the einsums. * More padding support. * Some sizes tweaks. * Use the hub to get the weights. * Use a batch matmul. * Tweaks. * More fixes. * Get some predictions to be generated.
* img2img pipeline for stable diffusion. (#752)Laurent Mazare2023-09-061-2/+2
| | | | | | | | | | | | | | | | | | | * img2img pipeline for stable diffusion. * Rename the arguments + fix. * Fix for zero strength. * Another fix. * Another fix. * Revert. * Include the backtrace. * Noise scaling. * Fix the height/width.
* Get the ggml based llama to generate some text. (#464)Laurent Mazare2023-08-161-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Add more stats to the ggml example. * Build a quantized model from the file content. * Move the tensor retrieval in the main crate. * Start adding the forward pass. * Add more to the forward pass of the quantized llama. * Apply the attention layers. * Add the sampling loop. * Get the sampling loop to work. * Minor tweak. * Add a quantize/dequantize test. * Bugfix. * Add a comment + swap the order. * Bugfixes.
* Npy tweaks & error with path (#384)Laurent Mazare2023-08-101-0/+14
| | | | | * Simplify the npy writing. * Wrap the file path so as to provide better errors.
* Add training for the llama2.c example (#296)Laurent Mazare2023-08-011-0/+8
| | | | | | | | | | | | | * Rework the commands and run inference by default. * Add the training module and load the training dataset. * Random dataset iterator. * Proper valid-loss computation. * Compute the evaluation loss. * Add more substance to the training loop.
* Fixing slice errors + comments.Nicolas Patry2023-07-271-0/+7
|
* Use bail rather than wrapping a string where possible. (#249)Laurent Mazare2023-07-261-3/+8
| | | | | * Use bail rather than wrapping a string where possible. * Revert the cuda default bit.
* Proper flash-attn parameters. (#244)Laurent Mazare2023-07-261-0/+13
| | | | | | | | | | | | | * Proper flash-attn parameters. * Set the flash attention parameters. * Add more validations. * Setup the o_ flash attn parameters. * More flash-attn support. * Set more flash attn parameters.
* Polish the index-add op and use it in the index-select backprop (#218)Laurent Mazare2023-07-221-2/+2
| | | | | | | * Add the cpu version of index-add. * More cpu support for index-add. * Use index-add in the backprop.
* Refactor the reduce ops in order to introduce argmin/argmax. (#212)Laurent Mazare2023-07-211-0/+3
| | | | | | | | | | | * Refactor the reduce ops in order to introduce argmin/argmax. * Clippy fixes. * Use the newly introduced argmax. * Fix the strided case. * Handle the non-contiguous case.
* Add the index-select op. (#209)Laurent Mazare2023-07-201-2/+2
| | | | | | | * Add the index-select op. * Cpu implementation of index-select. * Add the cpu implementation for index-select.
* Add cpu support for min and max. (#202)Laurent Mazare2023-07-191-0/+3
| | | | | * Add cpu support for min and max. * Add min/max all.
* Add backtrace information to errors where relevant. (#166)Laurent Mazare2023-07-141-0/+18
| | | | | | | * Add backtrace information to errors where relevant. * More backtrace information. * Add to the FAQ.
* Simplify the parameters used by sum and sum_keepdim. (#165)Laurent Mazare2023-07-141-0/+7
|
* Move the variable creation to the variable module. (#159)Laurent Mazare2023-07-131-0/+3
| | | | | | | | | * Move the variable creation to the variable module. * Make it possible to set a variable. * Add some basic gradient descent test. * Get the gradient descent test to work.
* Use a rwlock for inner mutability. (#156)Laurent Mazare2023-07-131-6/+0
| | | | | * Use a rw-lock. * Make clippy happier.
* Tensor mutability (#154)Laurent Mazare2023-07-131-0/+6
| | | | | * Working towards tensor mutability. * Use a ref-cell to provide tensor mutability.
* Sketch the candle-transformers crate. (#147)Laurent Mazare2023-07-121-0/+9
| | | | | * Sketch the candle-transformers crate. * Format the empty files.
* Cleanup the main crate error and add a couple dedicated ones (#142)Laurent Mazare2023-07-121-60/+75
| | | | | | | | | * Cosmetic cleanups to the error enum. * More error cleanup. * Proper error handling rather than panicing. * Add some conv1d dedicated error.
* Resurrect the llama npy support. (#140)Laurent Mazare2023-07-111-0/+3
|
* Modular backends (#138)Laurent Mazare2023-07-111-1/+1
| | | | | * Add some trait to formalize backends. * Use the generic backend trait.
* Add the elu op. (#113)Laurent Mazare2023-07-091-0/+3
|
* MKL adjustments. (#87)Laurent Mazare2023-07-061-0/+7
|
* Add a batch dimension on the bert example.laurent2023-07-041-2/+5
|
* Add the varbuilder + check shapes.laurent2023-07-031-0/+7
|
* Handle more types in safetensors.laurent2023-07-031-0/+3
|
* Add the ST error.laurent2023-07-031-0/+4
|
* Improve how we check that the dims are in bounds.laurent2023-06-301-0/+7
|
* Only narrow when needed + deactivate the kv cache.laurent2023-06-291-0/+8
|
* Refactor the hierarchy.Nicolas Patry2023-06-271-0/+102