summaryrefslogtreecommitdiff
path: root/candle-examples/examples/replit-code
Commit message (Collapse)AuthorAgeFilesLines
* Quantized GGUF style (#1523)Nicolas Patry2024-01-171-7/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Metal quantized modifications proposal. - Add a device param, wherever needed. - Create new QMetal storage thing that implements QuantizedType. - Update everywhere needed. Fix Python. Fixing examples. Fix: fmt + clippy + stub. Moving everything around. Only missing the actual implems. Fixing everything + adding dequantized kernels. More work. Fixing matmul. Fmt + Clippy Some clippy fixes. Working state. Q2K Metal -> Bugged (also present in GGML). Q4K CPU -> Bugged (present previously, new test catch it). Q5K CPU -> Bugged (present previously). Q8_1 Both -> Never really implemented it seems Q8K metal -> Never implemented in metal Fixing Q2K bug (present in ggml). * Cleanup. * Fix the rebase. * Removing the fences speeds everything up and *is* correct this time... * Cleanup the fence. * After rebase. * Bad code removal. * Rebase after phi2 merge + fix replit default to CPU. * Making the CI happy. * More happy tests. --------- Co-authored-by: Nicolas Patry <nicolas@Nicolass-MacBook-Pro.local>
* Add the quantized mpt model. (#1123)Laurent Mazare2023-10-181-5/+36
| | | | | * Add the quantized mpt model. * Support the quantized model for replit-code.
* Add a mention to the replit-code model in the readme. (#1121)Laurent Mazare2023-10-182-29/+24
|
* MPT alibi fixes. (#1120)Laurent Mazare2023-10-182-1/+46
| | | | | | | | | * MPT alibi fixes. * Some more fixes. * Finally get the model to return some sensible outputs. * Add a readme.
* MPT fixes. (#1117)Laurent Mazare2023-10-171-1/+1
| | | | | | | * MPT fixes. * Another couple fixes. * Another shape fix.
* Build alibi bias. (#1115)Laurent Mazare2023-10-171-0/+234
* Build alibi bias. * Apply the alibi attention bias. * Add the replit-code example.