This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| tags: '*' | |
| pull_request: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A port of https://github.com/karpathy/llama2.c/blob/master/run.c | |
| # to Julia. | |
| # Jiahao Chen <jiahao@csail.mit.edu> 2023-07-29 | |
| # | |
| # MIT License: see full text at https://opensource.org/license/mit/ | |
| # | |
| using LinearAlgebra | |
| using LogExpFunctions |
OlderNewer