-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
43,610 additions
and
3 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 |
---|---|---|
|
@@ -18,9 +18,6 @@ build/ | |
.vs/ | ||
.vscode/ | ||
|
||
ggml_weights/* | ||
ggml_weights_*/* | ||
models/ | ||
|
||
build-info.h | ||
|
||
|
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,34 @@ | ||
cmake_minimum_required(VERSION 3.12) | ||
project("bark" C CXX) | ||
|
||
set(BARK_BUILD_EXAMPLES ON) | ||
|
||
if (NOT XCODE AND NOT MSVC AND NOT CMAKE_BUILD_TYPE) | ||
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE) | ||
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo") | ||
endif() | ||
|
||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | ||
set(CMAKE_CXX_FLAGS_RELEASE "-O3") | ||
|
||
set(BARK_LIB bark) | ||
|
||
add_subdirectory(encodec.cpp) | ||
|
||
add_library(${BARK_LIB} STATIC bark.cpp bark.h) | ||
|
||
if (BARK_BUILD_EXAMPLES) | ||
add_subdirectory(examples) | ||
endif() | ||
|
||
target_link_libraries(${BARK_LIB} PUBLIC ggml encodec) | ||
target_include_directories(${BARK_LIB} PUBLIC .) | ||
target_compile_features(${BARK_LIB} PUBLIC cxx_std_11) | ||
|
||
if (GGML_CUBLAS) | ||
add_compile_definitions(GGML_USE_CUBLAS) | ||
endif() | ||
|
||
if (GGML_METAL) | ||
add_compile_definitions(GGML_USE_METAL) | ||
endif() |
Oops, something went wrong.