File tree Expand file tree Collapse file tree 2 files changed +33
-4
lines changed Expand file tree Collapse file tree 2 files changed +33
-4
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,11 @@ dotnet pack ./LLama.KernelMemory/LLamaSharp.KernelMemory.csproj -c Release -o ./
71
71
72
72
# pack the backends
73
73
cd temp
74
- nuget pack LLamaSharp.Backend.Cpu.nuspec -version $updated_version
75
- nuget pack LLamaSharp.Backend.Cuda11.nuspec -version $updated_version
76
- nuget pack LLamaSharp.Backend.Cuda12.nuspec -version $updated_version
77
-
74
+ for nuspec in * .nuspec
75
+ do
76
+ echo " Packing $nuspec "
77
+ nuget pack $nuspec -version $updated_version
78
+ done
78
79
79
80
cd ..
80
81
exit 0
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <package >
3
+ <metadata >
4
+ <id >LLamaSharp.Backend.OpenCL</id >
5
+ <version >$version$</version >
6
+ <title >LLamaSharp.Backend.OpenCL - OpenCL Backend for LLamaSharp</title >
7
+ <authors >llama.cpp Authors</authors >
8
+ <requireLicenseAcceptance >false</requireLicenseAcceptance >
9
+ <license type =" expression" >MIT</license >
10
+ <icon >icon512.png</icon >
11
+ <projectUrl >https://github.com/SciSharp/LLamaSharp</projectUrl >
12
+ <description >LLamaSharp.Backend.OpenCL is a backend for LLamaSharp to use with OpenCL.</description >
13
+ <releaseNotes ></releaseNotes >
14
+ <copyright >Copyright 2023 The llama.cpp Authors. All rights reserved.</copyright >
15
+ <tags >LLamaSharp LLama LLM GPT AI ChatBot SciSharp</tags >
16
+ </metadata >
17
+
18
+ <files >
19
+ <file src =" LLamaSharpBackend.props" target =" build/netstandard2.0/LLamaSharp.Backend.OpenCL.props" />
20
+
21
+ <file src =" runtimes/deps/clblast/llama.dll" target =" runtimes\win-x64\native\clblast\llama.dll" />
22
+ <file src =" runtimes/deps/clblast/libllama.so" target =" runtimes\linux-x64\native\clblast\libllama.so" />
23
+ <file src =" runtimes/deps/clblast/clblast.dll" target =" runtimes\win-x64\native\clblast\clblast.dll" />
24
+ <file src =" runtimes/deps/clblast/libclblast.so" target =" runtimes\linux-x64\native\clblast\libclblast.so" />
25
+
26
+ <file src =" icon512.png" target =" icon512.png" />
27
+ </files >
28
+ </package >
You can’t perform that action at this time.
0 commit comments