mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 21:39:52 +00:00
4003be0e5f
* Changed ugly xxd to literals. HPP files are much more readable as multiline literals rather than hex arrays. * Dashes in literal variable names. Replace . and - with _ in file names -> variable names. * Comment on removing xxd. XXD-> string literals * XXD to string literals. Replaced these unreadable headers with string literal versions using new deps.sh.
28 lines
807 B
Bash
Executable File
28 lines
807 B
Bash
Executable File
#!/bin/bash
|
|
# Download and update deps for binary
|
|
|
|
# get the directory of this script file
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
PUBLIC=$DIR/public
|
|
|
|
echo "download js bundle files"
|
|
curl https://npm.reversehttp.com/@preact/signals-core,@preact/signals,htm/preact,preact,preact/hooks > $PUBLIC/index.js
|
|
echo >> $PUBLIC/index.js # add newline
|
|
|
|
FILES=$(ls $PUBLIC)
|
|
|
|
cd $PUBLIC
|
|
for FILE in $FILES; do
|
|
echo "generate $FILE.hpp"
|
|
|
|
# Use C++11 string literals instead of ugly xxd.
|
|
f=$(echo $FILE | sed 's/\./_/g' -e 's/-/_/g')
|
|
echo "const char $f[] = R\"LITERAL(" > $DIR/$FILE.hpp
|
|
cat $FILE >> $DIR/$FILE.hpp
|
|
echo ")LITERAL\";" >> $DIR/$FILE.hpp
|
|
echo "unsigned int ${f}_len = sizeof($f);" >> $DIR/$FILE.hpp
|
|
|
|
#Deprecated old xxd
|
|
#xxd -i $FILE > $DIR/$FILE.hpp
|
|
done
|