memory.go 5.73 KB
Newer Older
Daniel Hiltgen's avatar
Daniel Hiltgen committed
1
2
3
4
5
6
7
8
9
package llm

import (
	"fmt"
	"log/slog"

	"github.com/ollama/ollama/api"
	"github.com/ollama/ollama/format"
	"github.com/ollama/ollama/gpu"
10
	"github.com/ollama/ollama/envconfig"
Daniel Hiltgen's avatar
Daniel Hiltgen committed
11
12
13
14
15
)

// This algorithm looks for a complete fit to determine if we need to unload other models
func PredictServerFit(allGpus gpu.GpuInfoList, ggml *GGML, adapters, projectors []string, opts api.Options) (bool, uint64) {
	// Split up the GPUs by type and try them
16
	var estimatedVRAM uint64
Daniel Hiltgen's avatar
Daniel Hiltgen committed
17
18
	for _, gpus := range allGpus.ByLibrary() {
		var layerCount int
Daniel Hiltgen's avatar
Daniel Hiltgen committed
19
		layerCount, estimatedVRAM, _ = EstimateGPULayers(gpus, ggml, projectors, opts)
Daniel Hiltgen's avatar
Daniel Hiltgen committed
20
21
22
23
24
25
26
27
28
29
30
31
32
		if opts.NumGPU < 0 {
			if layerCount > 0 && layerCount >= int(ggml.KV().BlockCount()+1) {
				return true, estimatedVRAM
			}
		} else {
			if layerCount > 0 && layerCount >= opts.NumGPU {
				return true, estimatedVRAM
			}
		}
	}
	return false, estimatedVRAM
}

Daniel Hiltgen's avatar
Daniel Hiltgen committed
33
// Given a model and one or more GPU targets, predict how many layers and bytes we can load, and the total size
Daniel Hiltgen's avatar
Daniel Hiltgen committed
34
// The GPUs provided must all be the same Library
Daniel Hiltgen's avatar
Daniel Hiltgen committed
35
func EstimateGPULayers(gpus []gpu.GpuInfo, ggml *GGML, projectors []string, opts api.Options) (int, uint64, uint64) {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
36
37
38
39
	var memoryAvailable uint64
	for _, info := range gpus {
		memoryAvailable += info.FreeMemory
	}
40
41
	if envconfig.MaxVRAM > 0 {
		memoryAvailable = envconfig.MaxVRAM
Daniel Hiltgen's avatar
Daniel Hiltgen committed
42
43
	}

Daniel Hiltgen's avatar
Daniel Hiltgen committed
44
45
46
47
48
49
50
51
52
53
54
55
	slog.Debug("evaluating", "library", gpus[0].Library, "gpu_count", len(gpus), "available", format.HumanBytes2(memoryAvailable))

	// TODO - this is probably wrong, first GPU vs secondaries will have different overheads
	memoryMinimum := gpus[0].MinimumMemory

	for _, projector := range projectors {
		memoryMinimum += projectorMemoryRequirements(projector)

		// multimodal models require at least 2048 context
		opts.NumCtx = max(opts.NumCtx, 2048)
	}

Michael Yang's avatar
Michael Yang committed
56
	layers := ggml.Tensors().Layers()
Michael Yang's avatar
typo  
Michael Yang committed
57
58
59
60
	// add one layer worth of memory as a buffer
	if blk0, ok := layers["blk.0"]; ok {
		memoryMinimum += blk0.size()
	}
Michael Yang's avatar
Michael Yang committed
61

Daniel Hiltgen's avatar
Daniel Hiltgen committed
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
	// fp16 k,v = (1 (k) + 1 (v)) * sizeof(float16) * n_ctx * n_layer * n_embd / n_head * n_head_kv
	var kv uint64 = 2 * 2 * uint64(opts.NumCtx) * ggml.KV().BlockCount() * ggml.KV().EmbeddingLength() / ggml.KV().HeadCount() * ggml.KV().HeadCountKV()

	graphPartialOffload, graphFullOffload := ggml.GraphSize(uint64(opts.NumCtx), uint64(min(opts.NumCtx, opts.NumBatch)))
	if graphPartialOffload == 0 {
		graphPartialOffload = ggml.KV().GQA() * kv / 6
	}

	if graphFullOffload == 0 {
		graphFullOffload = graphPartialOffload
	}

	graphFullOffload *= uint64(len(gpus))
	graphPartialOffload *= uint64(len(gpus))

77
78
79
80
81
	// on metal there's no partial offload overhead
	if gpus[0].Library == "metal" {
		graphPartialOffload = graphFullOffload
	}

Daniel Hiltgen's avatar
Daniel Hiltgen committed
82
	// memoryRequiredTotal represents the memory required for full GPU offloading (all layers)
Michael Yang's avatar
Michael Yang committed
83
	memoryRequiredTotal := memoryMinimum + graphFullOffload
Daniel Hiltgen's avatar
Daniel Hiltgen committed
84
85

	// memoryRequiredPartial represents the memory required for partial GPU offloading (n > 0, n < layers)
Michael Yang's avatar
Michael Yang committed
86
	memoryRequiredPartial := memoryMinimum + graphPartialOffload
Daniel Hiltgen's avatar
Daniel Hiltgen committed
87

Michael Yang's avatar
Michael Yang committed
88
	var memoryLayerOutput uint64
89
90
91
92
93
94
95
96
	if layer, ok := layers["output_norm"]; ok {
		memoryLayerOutput += layer.size()
	}

	if layer, ok := layers["output"]; ok {
		memoryLayerOutput += layer.size()
	} else if layer, ok := layers["token_embd"]; ok {
		memoryLayerOutput += layer.size()
Michael Yang's avatar
Michael Yang committed
97
98
99
100
101
102
103
104
105
	}

	if gpus[0].Library == "metal" && opts.UseMMap {
		// memory is preallocated for output tensors
		memoryRequiredTotal += memoryLayerOutput
		memoryRequiredPartial += memoryLayerOutput
	}

	var layerCount int
Daniel Hiltgen's avatar
Daniel Hiltgen committed
106
	for i := 0; i < int(ggml.KV().BlockCount()); i++ {
Michael Yang's avatar
typo  
Michael Yang committed
107
108
		if blk, ok := layers[fmt.Sprintf("blk.%d", i)]; ok {
			memoryLayer := blk.size()
Daniel Hiltgen's avatar
Daniel Hiltgen committed
109

Michael Yang's avatar
typo  
Michael Yang committed
110
111
			// KV is proportional to the number of layers
			memoryLayer += kv / ggml.KV().BlockCount()
Daniel Hiltgen's avatar
Daniel Hiltgen committed
112

Michael Yang's avatar
typo  
Michael Yang committed
113
114
115
116
117
			memoryRequiredTotal += memoryLayer
			if (opts.NumGPU >= 0 && layerCount+1 <= opts.NumGPU) || (opts.NumGPU < 0 && memoryAvailable > memoryRequiredPartial+memoryLayer) {
				memoryRequiredPartial += memoryLayer
				layerCount++
			}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
118
119
120
		}
	}

Michael Yang's avatar
Michael Yang committed
121
122
123
	if gpus[0].Library != "metal" || !opts.UseMMap {
		// memory was not preallocated for output tensors
		memoryRequiredTotal += memoryLayerOutput
Daniel Hiltgen's avatar
Daniel Hiltgen committed
124
125
	}

Michael Yang's avatar
Michael Yang committed
126
	if (opts.NumGPU >= 0 && layerCount+1 <= opts.NumGPU) || (opts.NumGPU < 0 && memoryAvailable > memoryRequiredTotal) {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
127
128
129
130
131
132
133
134
135
136
		layerCount = int(ggml.KV().BlockCount()) + 1
		memoryRequiredPartial = memoryRequiredTotal
	}

	memoryWeights := memoryRequiredTotal - memoryMinimum - graphFullOffload - kv

	slog.Info(
		"offload to gpu",
		slog.Group(
			"layers",
Michael Yang's avatar
Michael Yang committed
137
138
			// requested number of layers to offload
			"requested", opts.NumGPU,
Daniel Hiltgen's avatar
Daniel Hiltgen committed
139
			// estimated number of layers that can be offloaded
Michael Yang's avatar
Michael Yang committed
140
			"real", layerCount,
Daniel Hiltgen's avatar
Daniel Hiltgen committed
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
		),
		slog.Group(
			"memory",
			// memory available for offloading
			"available", format.HumanBytes2(memoryAvailable),
			slog.Group(
				"required",
				// memory required for full offloading
				"full", format.HumanBytes2(memoryRequiredTotal),
				// memory required to offload layers.estimate layers
				"partial", format.HumanBytes2(memoryRequiredPartial),
				// memory of KV cache
				"kv", format.HumanBytes2(kv),
			),
			slog.Group(
				"weights",
				// memory of the weights
				"total", format.HumanBytes2(memoryWeights),
				// memory of repeating layers
				"repeating", format.HumanBytes2(memoryWeights-memoryLayerOutput),
				// memory of non-repeating layers
				"nonrepeating", format.HumanBytes2(memoryLayerOutput),
			),
			slog.Group(
				"graph",
				// memory of graph when fully offloaded
				"full", format.HumanBytes2(graphFullOffload),
				// memory of graph when not fully offloaded
				"partial", format.HumanBytes2(graphPartialOffload),
			),
		),
	)
Daniel Hiltgen's avatar
Daniel Hiltgen committed
173
174
175
176
177
178
179
180
181
	if gpus[0].Library == "cpu" {
		return 0, 0, memoryRequiredTotal
	}
	if memoryRequiredPartial > memoryAvailable {
		slog.Debug("insufficient VRAM to load any model layers")
		return 0, 0, memoryRequiredTotal
	}

	return layerCount, memoryRequiredPartial, memoryRequiredTotal
Daniel Hiltgen's avatar
Daniel Hiltgen committed
182
}