Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub #1

Open
wants to merge 150 commits into
base: master
Choose a base branch
from
Open

GitHub #1

wants to merge 150 commits into from

Commits on Jul 24, 2023

  1. Configuration menu
    Copy the full SHA
    c9ad067 View commit details
    Browse the repository at this point in the history
  2. Speed up rmsnorm by using sqrtf/expf

    Problem:
    - exp and sqrt are using double precision for operations which is not
      required.
    
    Solution:
    - Use expf and sqrtf intead.
    
    Notes:
    - Although it's using single precision doesn't seem to affect the
      result.
    
    Results: ~ 10% improvement
      - before:  940 tok/s
      - after:  1020 tok/s
    krzysztof-jusiak committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    c9b1f10 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    90ae37c View commit details
    Browse the repository at this point in the history
  4. tweak argparse. fix steps=256, even if some models may support longer…

    … maximum seq_len. get rid of seed option for now, use temp=0.0 for deterministic behavior
    karpathy committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    791be9d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    687473c View commit details
    Browse the repository at this point in the history
  6. Merge pull request karpathy#43 from krzysztof-jusiak/rmsnorm

    Speed up rmsnorm by using sqrtf/expf
    karpathy authored Jul 24, 2023
    Configuration menu
    Copy the full SHA
    669b75d View commit details
    Browse the repository at this point in the history
  7. Add discord link to Readme

    karpathy authored Jul 24, 2023
    Configuration menu
    Copy the full SHA
    bf9f6f2 View commit details
    Browse the repository at this point in the history
  8. add a simple makefile

    karpathy committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    16edfe6 View commit details
    Browse the repository at this point in the history
  9. MSVC Compatibility fix for timer

    use clock() instead of gettimeofday() for cross-platform compatibility
    richinseattle authored Jul 24, 2023
    Configuration menu
    Copy the full SHA
    2be7d78 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e6e3f13 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    496466f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    cae88df View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    f121f5f View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    b2857c6 View commit details
    Browse the repository at this point in the history
  15. Merge pull request karpathy#48 from richinseattle/richinseattle-patch-1

    MSVC Compatibility fix for timer
    karpathy authored Jul 24, 2023
    Configuration menu
    Copy the full SHA
    d18e9ef View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2023

  1. Configuration menu
    Copy the full SHA
    a1f6b46 View commit details
    Browse the repository at this point in the history
  2. Merge pull request karpathy#50 from karpathy/memmap

    candidate memmap implementation
    karpathy authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    133ad3f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c3e0d73 View commit details
    Browse the repository at this point in the history
  4. Update README.md

    karpathy authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    cf625ec View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    81c90bf View commit details
    Browse the repository at this point in the history
  6. Update README.md

    karpathy authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    98ec4ba View commit details
    Browse the repository at this point in the history
  7. Fixed time_in_ms() compile time error (termux and neoterm)

    clang version 16.0.4
    emma-eva authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    6ce91b1 View commit details
    Browse the repository at this point in the history
  8. intimately

    RichardScottOZ authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    f3a1e22 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d359fae View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    05ee4cb View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    94730f1 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    34ccb64 View commit details
    Browse the repository at this point in the history
  13. Update README.md

    karpathy authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    6cf34d6 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ac22fbc View commit details
    Browse the repository at this point in the history
  15. Export llama without llama

    python273 committed Jul 25, 2023
    Configuration menu
    Copy the full SHA
    4d1fa2f View commit details
    Browse the repository at this point in the history
  16. Merge pull request karpathy#77 from madroidmaq/master

    Update README.md: formate output samples
    karpathy authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    366711a View commit details
    Browse the repository at this point in the history
  17. Merge pull request karpathy#60 from emma-eva/patch-1

    Fixed time_in_ms() compile time error (termux and neoterm)
    karpathy authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    614bf91 View commit details
    Browse the repository at this point in the history
  18. Merge pull request karpathy#85 from python273/export-llama-without-llama

    Export llama without llama
    karpathy authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    5bcd19a View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    7f9f5ca View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    f565089 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2023

  1. Improve locality

    aegkmq committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    36c522a View commit details
    Browse the repository at this point in the history
  2. Refactor freqs_cis into freqs_cos and freqs_sin, and remove complex64…

    … for ONNX export compatibility
    ai-doge committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    36bf904 View commit details
    Browse the repository at this point in the history
  3. Minor cleanup

    aegkmq committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    8986005 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'aegkmq-master'

    karpathy committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    3aedfe5 View commit details
    Browse the repository at this point in the history
  5. Update README.md

    karpathy authored Jul 26, 2023
    Configuration menu
    Copy the full SHA
    f5d8797 View commit details
    Browse the repository at this point in the history
  6. Update README.md

    karpathy authored Jul 26, 2023
    Configuration menu
    Copy the full SHA
    7496ea8 View commit details
    Browse the repository at this point in the history
  7. Update README.md

    karpathy authored Jul 26, 2023
    Configuration menu
    Copy the full SHA
    7059d7d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2711ae8 View commit details
    Browse the repository at this point in the history
  9. small note on traing times

    karpathy committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    f0f43b7 View commit details
    Browse the repository at this point in the history
  10. add some code comments

    kroggen committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    5703448 View commit details
    Browse the repository at this point in the history
  11. Merge pull request karpathy#119 from kroggen/code-comments

    add some code comments
    karpathy authored Jul 26, 2023
    Configuration menu
    Copy the full SHA
    4085e89 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    7a4ca4a View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2023

  1. Configuration menu
    Copy the full SHA
    c2bbe9c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5f681b6 View commit details
    Browse the repository at this point in the history
  3. Center align cute llama image in README

    Added HTML code to center align the cute llama image in the README file. The image is wrapped in a <p> tag with the "align" attribute set to "center" for proper alignment. Additionally, an "alt" attribute is included for accessibility.
    som-sama authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    7887133 View commit details
    Browse the repository at this point in the history
  4. update openmp pragmas for MSVC compatibility

    This has no negative impact on Linux and is in preparation for windows support. Windows compiles will not work without additional timer and mmap compatibility patches
    richinseattle authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    7f7a3b2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    530ef8e View commit details
    Browse the repository at this point in the history
  6. Merge pull request karpathy#126 from som-sama/patch-1

    Center align cute llama image in README
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    34cce6a View commit details
    Browse the repository at this point in the history
  7. fix whitespace

    richinseattle authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    539dc73 View commit details
    Browse the repository at this point in the history
  8. Merge branch 'patch-1' of https://github.com/richinseattle/llama2.c i…

    …nto richinseattle-patch-1
    karpathy committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    815ce33 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b35e82f View commit details
    Browse the repository at this point in the history
  10. Windows compat: Use GetTickCount for delta timer

    Intentionally not including a windows header here to avoid merge conflict on include with mmap support. cl.exe doesn't complain, mingw warns.
    richinseattle authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    37e8c20 View commit details
    Browse the repository at this point in the history
  11. Merge pull request karpathy#128 from richinseattle/patch-1

    update openmp pragmas for MSVC compatibility
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    5c55d59 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    eff1c1b View commit details
    Browse the repository at this point in the history
  13. Merge branch 'patch-2' of https://github.com/richinseattle/llama2.c i…

    …nto richinseattle-patch-2
    karpathy committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    0d18fa7 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    b7efb1b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    4a6b7a4 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    5b405a7 View commit details
    Browse the repository at this point in the history
  17. readme: Include reference to go port

    This adds a link to my go port of this project.
    tmc authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    01c06fa View commit details
    Browse the repository at this point in the history
  18. Merge pull request karpathy#131 from tmc/patch-2

    readme: Include reference to go port
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    14e90b5 View commit details
    Browse the repository at this point in the history
  19. Merge pull request karpathy#130 from richinseattle/patch-3

    Add Windows mmap
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    de6f2fc View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    b18d325 View commit details
    Browse the repository at this point in the history
  21. Merge pull request karpathy#132 from richinseattle/master

    add windows build commands
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    a03ce1e View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    f19f50a View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    4e23ad8 View commit details
    Browse the repository at this point in the history
  24. Update README.md

    nikolaydubina authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    d281777 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    9c0850d View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    abfcdf1 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    1bdf5af View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    bddde33 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    2566ddf View commit details
    Browse the repository at this point in the history
  30. Update README.md

    nikolaydubina authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    e970c27 View commit details
    Browse the repository at this point in the history
  31. Merge pull request karpathy#134 from Manuel030/sync-with-upstream

    add llama2.c-android to readme
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    4a4663a View commit details
    Browse the repository at this point in the history
  32. Merge pull request karpathy#137 from tatellos/master

    Improve readme: clarify dependencies and other things to install
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    79933a8 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    acf1e18 View commit details
    Browse the repository at this point in the history
  34. minor whitespaces cleanup

    tairov committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    3435726 View commit details
    Browse the repository at this point in the history
  35. Merge pull request karpathy#139 from tairov/gnu

    Add Makefile target to support builds on amazon linux & centos
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    9253d45 View commit details
    Browse the repository at this point in the history
  36. Fix random_f32

    aegkmq committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    71200f3 View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    b4b9ef5 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    677bb8f View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    b6d63a9 View commit details
    Browse the repository at this point in the history
  40. Merge pull request karpathy#86 from tairov/master

    Add CI github actions workflow to verify builds on pull_request
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    cc66a20 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    459b9c8 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    b63cb91 View commit details
    Browse the repository at this point in the history
  43. Merge pull request karpathy#146 from admu-progvar/master

    Add llama2.cpp to notable forks section
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    6b3a689 View commit details
    Browse the repository at this point in the history
  44. Merge pull request karpathy#133 from nikolaydubina/patch-1

    Added Go ports
    karpathy authored Jul 27, 2023
    Configuration menu
    Copy the full SHA
    747db60 View commit details
    Browse the repository at this point in the history
  45. HF checkpoints i removed the optimizer to save space, init Adam witho…

    …ut the first/second moments is ok
    karpathy committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    5177633 View commit details
    Browse the repository at this point in the history
  46. propagate the dropout flag

    karpathy committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    78952fb View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    0e1b0d4 View commit details
    Browse the repository at this point in the history
  48. small stylistic fixes and adjustments, fix bug in Makefile, and chang…

    …e the timing code to skip the first (slow) iteration
    karpathy committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    25b50ee View commit details
    Browse the repository at this point in the history
  49. strip leading whitespace

    karpathy committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    e5752e1 View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    568a651 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2023

  1. Configuration menu
    Copy the full SHA
    72ba34c View commit details
    Browse the repository at this point in the history
  2. big change: adding prompting. many LOC, but critical. ty @atamurad fo…

    …r the first draft, i ended up tuning it quite a bit.
    karpathy committed Jul 28, 2023
    Configuration menu
    Copy the full SHA
    b4bb47b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7cbb47c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    905c5c5 View commit details
    Browse the repository at this point in the history
  5. oops readme smallfix

    karpathy committed Jul 28, 2023
    Configuration menu
    Copy the full SHA
    2efc197 View commit details
    Browse the repository at this point in the history
  6. readme tweaks

    karpathy committed Jul 28, 2023
    Configuration menu
    Copy the full SHA
    9949c50 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6ce28fb View commit details
    Browse the repository at this point in the history
  8. Merge pull request karpathy#138 from aegkmq/better-rng

    Replace the rand() with a portable rng
    karpathy authored Jul 28, 2023
    Configuration menu
    Copy the full SHA
    d04336c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fd68dd2 View commit details
    Browse the repository at this point in the history
  10. added repository in readme

    Daniil Tcelikin committed Jul 28, 2023
    Configuration menu
    Copy the full SHA
    3418fed View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    356f74c View commit details
    Browse the repository at this point in the history
  12. Update README.md

    Add llama2.js to notable forks section
    epicure authored Jul 28, 2023
    Configuration menu
    Copy the full SHA
    43d19ed View commit details
    Browse the repository at this point in the history
  13. Merge pull request karpathy#163 from epicure/patch-1

    Add llama2.js to notable forks section
    karpathy authored Jul 28, 2023
    Configuration menu
    Copy the full SHA
    f61807d View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2023

  1. Configuration menu
    Copy the full SHA
    6f156fd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bc36686 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2023

  1. Update README.md

    cgbur authored Jul 30, 2023
    Configuration menu
    Copy the full SHA
    ab39930 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cddb05d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    13789ff View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6b6ed3d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b63dfd5 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. Merge pull request karpathy#178 from cgbur/patch-1

    Add Zig port of project
    karpathy authored Jul 31, 2023
    Configuration menu
    Copy the full SHA
    ce05cc2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68fc522 View commit details
    Browse the repository at this point in the history
  3. update readme

    leo-du committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    3b446ba View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d0702ed View commit details
    Browse the repository at this point in the history
  5. add link to scala port

    jrudolph committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    4c0a882 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2023

  1. Configuration menu
    Copy the full SHA
    883cda1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    338f606 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    163e264 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    13d22ef View commit details
    Browse the repository at this point in the history
  5. Merge pull request karpathy#194 from celikin/patch-1

    added JNI for android with compiler optimization
    karpathy authored Aug 1, 2023
    Configuration menu
    Copy the full SHA
    9942a33 View commit details
    Browse the repository at this point in the history
  6. Merge pull request karpathy#188 from leo-du/llama2.c

    Add another Rust port in Readme
    karpathy authored Aug 1, 2023
    Configuration menu
    Copy the full SHA
    f971b76 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    502f681 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    71e5de2 View commit details
    Browse the repository at this point in the history
  9. Merge pull request karpathy#149 from murilocurti/fix/makefile-win64-gcc

    fix: Use correct compiler for Win64 GCC in Makefile
    karpathy authored Aug 1, 2023
    Configuration menu
    Copy the full SHA
    4a1250e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9023840 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    217667d View commit details
    Browse the repository at this point in the history
  12. Merge pull request karpathy#198 from trholding/notable-forks-patch

    README.md - Update notable forks section
    karpathy authored Aug 1, 2023
    Configuration menu
    Copy the full SHA
    c1a0c6e View commit details
    Browse the repository at this point in the history
  13. Merge pull request karpathy#160 from GabrielJadderson/add-fp-fast

    Add fp:fast for better performance on windows
    karpathy authored Aug 1, 2023
    Configuration menu
    Copy the full SHA
    e06ff42 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    221f4f9 View commit details
    Browse the repository at this point in the history
  15. Merge pull request karpathy#173 from juvi21/patch-1

    Added julia port to notable forks section in README.md
    karpathy authored Aug 1, 2023
    Configuration menu
    Copy the full SHA
    def12a2 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    23f6083 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    e270c6e View commit details
    Browse the repository at this point in the history
  18. Merge pull request karpathy#186 from vodkaslime/master

    add vodkaslime llama.zig to readme
    karpathy authored Aug 1, 2023
    Configuration menu
    Copy the full SHA
    e2d4a38 View commit details
    Browse the repository at this point in the history
  19. Merge pull request karpathy#179 from richinseattle/windows-ftell64-fix

    use ssize_t/int64 and 64bit version of ftell on windows
    karpathy authored Aug 1, 2023
    Configuration menu
    Copy the full SHA
    b7f026f View commit details
    Browse the repository at this point in the history
  20. Merge pull request karpathy#175 from tairov/ci-mingw

    Add build step for win64 msys2/mingw
    karpathy authored Aug 1, 2023
    Configuration menu
    Copy the full SHA
    a8f3e1c View commit details
    Browse the repository at this point in the history
  21. Add tinyshakespeare dataset

    wlamond committed Aug 1, 2023
    Configuration menu
    Copy the full SHA
    e592ed5 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. Configuration menu
    Copy the full SHA
    b2b5514 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    gohai authored Aug 2, 2023
    Configuration menu
    Copy the full SHA
    8dd9bad View commit details
    Browse the repository at this point in the history
  3. Add Java port.

    mukel committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    3097430 View commit details
    Browse the repository at this point in the history
  4. Merge pull request karpathy#217 from mukel/llama2.java

    Add Java port.
    karpathy authored Aug 2, 2023
    Configuration menu
    Copy the full SHA
    574be29 View commit details
    Browse the repository at this point in the history
  5. Merge pull request karpathy#211 from wlamond/tinyshakespeare

    Add tinyshakespeare dataset
    karpathy authored Aug 2, 2023
    Configuration menu
    Copy the full SHA
    5b47cd1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9819ae4 View commit details
    Browse the repository at this point in the history
  7. Merge pull request karpathy#216 from gohai/patch-1

    Add link to Emscripten port in README
    karpathy authored Aug 2, 2023
    Configuration menu
    Copy the full SHA
    af8708d View commit details
    Browse the repository at this point in the history