2023-06-27 13:46:46 -04:00
# Development
2023-07-07 12:59:24 -04:00
Install required tools:
2023-06-27 13:46:46 -04:00
2023-09-12 11:04:35 -04:00
- cmake version 3.24 or higher
2024-03-07 10:39:49 -05:00
- go version 1.22 or higher
2023-09-12 11:04:35 -04:00
- gcc version 11.4.0 or higher
2023-10-01 14:51:01 -04:00
```bash
2023-08-30 16:35:03 -04:00
brew install go cmake gcc
2023-06-27 13:46:46 -04:00
```
2023-12-22 11:47:18 -05:00
Optionally enable debugging and more verbose logging:
```bash
2024-01-18 13:52:01 -05:00
# At build time
2023-12-22 11:47:18 -05:00
export CGO_CFLAGS="-g"
2024-01-18 13:52:01 -05:00
# At runtime
export OLLAMA_DEBUG=1
2023-12-22 11:47:18 -05:00
```
Get the required libraries and build the native LLM code:
2023-07-21 16:36:36 -04:00
2023-10-01 14:51:01 -04:00
```bash
2023-08-30 16:35:03 -04:00
go generate ./...
2023-07-21 16:36:36 -04:00
```
2023-07-17 20:16:59 -04:00
Then build ollama:
2023-06-27 13:46:46 -04:00
2023-10-01 14:51:01 -04:00
```bash
2023-07-17 20:16:59 -04:00
go build .
2023-06-27 13:46:46 -04:00
```
2023-07-07 12:59:24 -04:00
Now you can run `ollama` :
2023-06-27 13:46:46 -04:00
2023-10-01 14:51:01 -04:00
```bash
2023-07-07 12:59:24 -04:00
./ollama
2023-06-27 13:46:46 -04:00
```
2023-09-12 11:04:35 -04:00
2023-12-24 12:02:18 -05:00
### Linux
2023-09-12 11:04:35 -04:00
2023-12-24 12:02:18 -05:00
#### Linux CUDA (NVIDIA)
2023-12-13 20:26:47 -05:00
2024-03-07 10:39:49 -05:00
_Your operating system distribution may already have packages for NVIDIA CUDA. Distro packages are often preferable, but instructions are distro-specific. Please consult distro-specific docs for dependencies if available!_
2023-12-13 20:26:47 -05:00
2024-01-18 12:44:44 -05:00
Install `cmake` and `golang` as well as [NVIDIA CUDA ](https://developer.nvidia.com/cuda-downloads )
2024-03-07 10:39:49 -05:00
development and runtime packages.
2024-01-18 12:44:44 -05:00
Typically the build scripts will auto-detect CUDA, however, if your Linux distro
or installation approach uses unusual paths, you can specify the location by
specifying an environment variable `CUDA_LIB_DIR` to the location of the shared
2024-03-07 10:39:49 -05:00
libraries, and `CUDACXX` to the location of the nvcc compiler. You can customize
2024-01-20 15:15:50 -05:00
set set of target CUDA architectues by setting `CMAKE_CUDA_ARCHITECTURES` (e.g. "50;60;70")
2024-01-18 12:44:44 -05:00
2023-12-13 20:26:47 -05:00
Then generate dependencies:
2023-12-24 12:02:18 -05:00
2023-12-13 20:26:47 -05:00
```
go generate ./...
```
2023-12-24 12:02:18 -05:00
2023-12-13 20:26:47 -05:00
Then build the binary:
2023-12-24 12:02:18 -05:00
2023-12-13 20:26:47 -05:00
```
go build .
```
2023-12-24 12:02:18 -05:00
#### Linux ROCm (AMD)
2024-03-07 10:39:49 -05:00
_Your operating system distribution may already have packages for AMD ROCm and CLBlast. Distro packages are often preferable, but instructions are distro-specific. Please consult distro-specific docs for dependencies if available!_
2023-12-13 20:26:47 -05:00
2024-03-07 01:50:11 -05:00
Install [CLBlast ](https://github.com/CNugteren/CLBlast/blob/master/doc/installation.md ) and [ROCm ](https://rocm.docs.amd.com/en/latest/deploy/linux/quick_start.html ) development packages first, as well as `cmake` and `golang` .
2024-01-18 12:44:44 -05:00
Typically the build scripts will auto-detect ROCm, however, if your Linux distro
or installation approach uses unusual paths, you can specify the location by
specifying an environment variable `ROCM_PATH` to the location of the ROCm
install (typically `/opt/rocm` ), and `CLBlast_DIR` to the location of the
2024-03-07 10:39:49 -05:00
CLBlast install (typically `/usr/lib/cmake/CLBlast` ). You can also customize
2024-01-21 15:57:13 -05:00
the AMD GPU targets by setting AMDGPU_TARGETS (e.g. `AMDGPU_TARGETS="gfx1101;gfx1102"` )
2023-12-24 12:02:18 -05:00
2023-12-13 20:26:47 -05:00
```
2024-01-18 12:44:44 -05:00
go generate ./...
2023-12-13 20:26:47 -05:00
```
2023-12-24 12:02:18 -05:00
2023-12-13 20:26:47 -05:00
Then build the binary:
2023-12-24 12:02:18 -05:00
2023-12-13 20:26:47 -05:00
```
go build .
```
2024-03-07 10:39:49 -05:00
ROCm requires elevated privileges to access the GPU at runtime. On most distros you can add your user account to the `render` group, or run as root.
2023-12-13 20:26:47 -05:00
2024-01-07 18:48:05 -05:00
#### Advanced CPU Settings
By default, running `go generate ./...` will compile a few different variations
of the LLM library based on common CPU families and vector math capabilities,
including a lowest-common-denominator which should run on almost any 64 bit CPU
2024-03-07 10:39:49 -05:00
somewhat slowly. At runtime, Ollama will auto-detect the optimal variation to
load. If you would like to build a CPU-based build customized for your
2024-01-07 18:48:05 -05:00
processor, you can set `OLLAMA_CUSTOM_CPU_DEFS` to the llama.cpp flags you would
2024-03-07 10:39:49 -05:00
like to use. For example, to compile an optimized binary for an Intel i9-9880H,
2024-01-07 18:48:05 -05:00
you might use:
```
OLLAMA_CUSTOM_CPU_DEFS="-DLLAMA_AVX=on -DLLAMA_AVX2=on -DLLAMA_F16C=on -DLLAMA_FMA=on" go generate ./...
go build .
```
2023-12-24 12:02:18 -05:00
#### Containerized Linux Build
2024-03-07 10:39:49 -05:00
If you have Docker available, you can build linux binaries with `./scripts/build_linux.sh` which has the CUDA and ROCm dependencies included. The resulting binary is placed in `./dist`
2023-12-24 12:02:18 -05:00
### Windows
Note: The windows build for Ollama is still under development.
Install required tools:
- MSVC toolchain - C/C++ and cmake as minimal requirements
2024-03-07 10:39:49 -05:00
- go version 1.22 or higher
2023-12-24 12:02:18 -05:00
- MinGW (pick one variant) with GCC.
- < https: // www . mingw-w64 . org />
- < https: // www . msys2 . org />
```powershell
$env:CGO_ENABLED="1"
go generate ./...
go build .
```
#### Windows CUDA (NVIDIA)
In addition to the common Windows development tools described above, install:
2023-12-13 20:26:47 -05:00
2023-12-24 12:02:18 -05:00
- [NVIDIA CUDA ](https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html )