๐
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
| @echo off | |
| REM Restricts llama-server to a certain set of CPU cores. | |
| REM Argument: integer representing the # of cores to limit to | |
| echo Setting llama-server affinity to last %1 cores... | |
| REM Hardcoded CPU affinity masks for my 12-core system because I'm too lazy to do this elegantly. | |
| REM The "first" cores are P-cores and the "last" ones are E-cores; I want to keep P-cores free for |
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
| # CANDLE v0.1.0 | |
| # Contributors to this file: | |
| # - twisted_nematic57 | |
| # This file is Public Domain | |
| import machine | |
| import rp2 | |
| import sys # I don't know why this is needed | |
| import _thread | |
| from time import * # why not `import time`? we'll never know |
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
| viewer.style = 'filter: grayscale(100%) invert(84%) contrast(178%) brightness(82%)' |
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
| cd repository | |
| git checkout --orphan orphan_name | |
| git rm -rf . | |
| rm '.gitignore' | |
| echo "#Title of Readme" > README.md | |
| git add README.md | |
| git commit -a -m "Initial Commit" | |
| git push origin orphan_name |