Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
2ae05562
Unverified
Commit
2ae05562
authored
Jan 25, 2024
by
Michael Yang
Committed by
GitHub
Jan 25, 2024
Browse files
Merge pull request #1679 from ollama/mxyng/build-gpus
build cuda and rocm
parents
5be9bdd4
a8c5413d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
16 deletions
+64
-16
.github/workflows/test.yaml
.github/workflows/test.yaml
+64
-16
No files found.
.github/workflows/test.yaml
View file @
2ae05562
...
@@ -23,27 +23,71 @@ jobs:
...
@@ -23,27 +23,71 @@ jobs:
with
:
with
:
go-version
:
'
1.21'
go-version
:
'
1.21'
cache
:
true
cache
:
true
-
if
:
${{ startsWith(matrix.os, 'windows-') }}
shell
:
pwsh
run
:
|
$path = vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath
if ($path) {
$path = join-path $path 'Common7\Tools\vsdevcmd.bat'
if (test-path $path) {
cmd /s /c """$path"" $args && set" | where { $_ -match '(\w+)=(.*)' } | foreach {
echo "$($Matches[1])=$($Matches[2])" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
}
}
}
echo "C:\Program Files\Git\usr\bin" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf8 -Append
-
run
:
go get ./...
-
run
:
go get ./...
-
run
:
go generate -x ./...
-
run
:
go generate -x ./...
-
uses
:
actions/upload-artifact@v4
-
uses
:
actions/upload-artifact@v4
with
:
with
:
name
:
${{ matrix.os }}-${{ matrix.arch }}-libraries
name
:
${{ matrix.os }}-${{ matrix.arch }}-libraries
path
:
|
path
:
llm/llama.cpp/build/**/lib/*
llm/llama.cpp/build/**/lib/*
generate-cuda
:
strategy
:
matrix
:
cuda-version
:
-
'
11.8.0'
runs-on
:
ubuntu-latest
container
:
nvidia/cuda:${{ matrix.cuda-version }}-devel-ubuntu20.04
steps
:
-
run
:
|
apt-get update && apt-get install -y git build-essential curl
curl -fsSL https://github.com/Kitware/CMake/releases/download/v3.28.1/cmake-3.28.1-linux-x86_64.tar.gz \
| tar -zx -C /usr --strip-components 1
env
:
DEBIAN_FRONTEND
:
noninteractive
-
uses
:
actions/checkout@v4
-
uses
:
actions/setup-go@v4
with
:
go-version
:
'
1.21'
cache
:
true
-
run
:
go get ./...
-
run
:
|
git config --global --add safe.directory /__w/ollama/ollama
go generate -x ./...
env
:
OLLAMA_SKIP_CPU_GENERATE
:
'
1'
-
uses
:
actions/upload-artifact@v4
with
:
name
:
cuda-${{ matrix.cuda-version }}-libraries
path
:
llm/llama.cpp/build/**/lib/*
generate-rocm
:
strategy
:
matrix
:
rocm-version
:
-
'
5.7.1'
-
'
6.0'
runs-on
:
ubuntu-latest
container
:
rocm/dev-ubuntu-20.04:${{ matrix.rocm-version }}
steps
:
-
run
:
|
apt-get update && apt-get install -y git build-essential curl rocm-libs
curl -fsSL https://github.com/Kitware/CMake/releases/download/v3.28.1/cmake-3.28.1-linux-x86_64.tar.gz \
| tar -zx -C /usr --strip-components 1
env
:
DEBIAN_FRONTEND
:
noninteractive
-
uses
:
actions/checkout@v4
-
uses
:
actions/setup-go@v4
with
:
go-version
:
'
1.21'
cache
:
true
-
run
:
go get ./...
-
run
:
|
git config --global --add safe.directory /__w/ollama/ollama
go generate -x ./...
env
:
OLLAMA_SKIP_CPU_GENERATE
:
'
1'
-
uses
:
actions/upload-artifact@v4
with
:
name
:
rocm-${{ matrix.rocm-version }}-libraries
path
:
llm/llama.cpp/build/**/lib/*
lint
:
lint
:
strategy
:
strategy
:
matrix
:
matrix
:
...
@@ -112,3 +156,7 @@ jobs:
...
@@ -112,3 +156,7 @@ jobs:
path
:
llm/llama.cpp/build
path
:
llm/llama.cpp/build
-
run
:
go build
-
run
:
go build
-
run
:
go test -v ./...
-
run
:
go test -v ./...
-
uses
:
actions/upload-artifact@v4
with
:
name
:
${{ matrix.os }}-binaries
path
:
ollama
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment