2023-10-10 11:31:13 +00:00
|
|
|
// swift-tools-version:5.5
|
2023-03-28 16:39:01 +00:00
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
name: "llama",
|
2023-12-05 07:29:46 +00:00
|
|
|
platforms: [
|
|
|
|
.macOS(.v12),
|
|
|
|
.iOS(.v14),
|
|
|
|
.watchOS(.v4),
|
|
|
|
.tvOS(.v14)
|
|
|
|
],
|
2023-03-28 16:39:01 +00:00
|
|
|
products: [
|
|
|
|
.library(name: "llama", targets: ["llama"]),
|
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.target(
|
|
|
|
name: "llama",
|
|
|
|
path: ".",
|
2024-02-12 17:54:29 +00:00
|
|
|
exclude: [
|
|
|
|
"cmake",
|
|
|
|
"examples",
|
|
|
|
"scripts",
|
|
|
|
"models",
|
|
|
|
"tests",
|
|
|
|
"CMakeLists.txt",
|
|
|
|
"ggml-cuda.cu",
|
|
|
|
"ggml-cuda.h",
|
|
|
|
"Makefile"
|
|
|
|
],
|
2023-09-03 06:21:05 +00:00
|
|
|
sources: [
|
2024-02-12 17:54:29 +00:00
|
|
|
"ggml.c",
|
2023-09-03 06:21:05 +00:00
|
|
|
"llama.cpp",
|
2024-03-11 15:47:47 +00:00
|
|
|
"unicode.cpp",
|
2024-03-26 21:46:21 +00:00
|
|
|
"unicode-data.cpp",
|
2024-02-12 17:54:29 +00:00
|
|
|
"ggml-alloc.c",
|
|
|
|
"ggml-backend.c",
|
|
|
|
"ggml-quants.c",
|
|
|
|
"ggml-metal.m",
|
|
|
|
],
|
|
|
|
resources: [
|
|
|
|
.process("ggml-metal.metal")
|
2023-12-05 07:29:46 +00:00
|
|
|
],
|
2023-03-28 16:39:01 +00:00
|
|
|
publicHeadersPath: "spm-headers",
|
2023-09-03 06:21:05 +00:00
|
|
|
cSettings: [
|
2023-10-10 11:31:13 +00:00
|
|
|
.unsafeFlags(["-Wno-shorten-64-to-32", "-O3", "-DNDEBUG"]),
|
2023-12-05 07:29:46 +00:00
|
|
|
.define("GGML_USE_ACCELERATE"),
|
|
|
|
.unsafeFlags(["-fno-objc-arc"]),
|
|
|
|
.define("GGML_USE_METAL"),
|
2023-10-05 14:00:07 +00:00
|
|
|
// NOTE: NEW_LAPACK will required iOS version 16.4+
|
|
|
|
// We should consider add this in the future when we drop support for iOS 14
|
|
|
|
// (ref: ref: https://developer.apple.com/documentation/accelerate/1513264-cblas_sgemm?language=objc)
|
|
|
|
// .define("ACCELERATE_NEW_LAPACK"),
|
|
|
|
// .define("ACCELERATE_LAPACK_ILP64")
|
2023-12-05 07:29:46 +00:00
|
|
|
],
|
2023-04-05 10:44:24 +00:00
|
|
|
linkerSettings: [
|
|
|
|
.linkedFramework("Accelerate")
|
|
|
|
]
|
2023-09-09 09:12:10 +00:00
|
|
|
)
|
2023-03-28 16:39:01 +00:00
|
|
|
],
|
|
|
|
cxxLanguageStandard: .cxx11
|
|
|
|
)
|