forked from ggerganov/llama.cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'layla-build' into merge
- Loading branch information
Showing
13 changed files
with
260 additions
and
99 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ cmake-build-* | |
out/ | ||
tmp/ | ||
|
||
loras/* | ||
models/* | ||
models-mnt | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
root ::= cn-char+ ([ \t\n] cn-char+)* | ||
cn-char ::= cjk | punctuation | ||
cjk ::= [一-鿿] | [𠀀-] | ||
punctuation ::= [、-〾] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
root ::= conversation+ | ||
conversation ::= assistant-line "\nUSER: " | ||
assistant-line ::= kr-string "\n" | ||
kr-string ::= kr-char* | ||
kr-char ::= hangul | punctuation | whitespace | ||
hangul ::= [가-힣] | ||
punctuation ::= [、-〾] | ||
whitespace ::= [ \t] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
root ::= record | ||
record ::= "Event: " string "\n" "Date: " string "\n" "Time: " string "\n" | ||
string ::= "" [ -~]* "" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
set(CMAKE_SYSTEM_NAME iOS) | ||
|
||
# specify the cross compiler | ||
set(CMAKE_XCODE_ATTRIBUTE_ONLY_ACTIVE_ARCH NO) | ||
|
||
# specify which architectures to build for | ||
set(CMAKE_OSX_ARCHITECTURES "$(ARCHS_STANDARD)") | ||
|
||
# you can also choose to build for a specific device | ||
# set(CMAKE_OSX_ARCHITECTURES "arm64") | ||
# or for the simulator | ||
# set(CMAKE_OSX_ARCHITECTURES "x86_64") | ||
|
||
set(CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphoneos;-iphonesimulator") | ||
|
||
# you might also want to set the deployment target | ||
# set(CMAKE_XCODE_ATTRIBUTE_IPHONEOS_DEPLOYMENT_TARGET "10.0") |
Oops, something went wrong.