"mmdet3d/datasets/transforms/transforms_3d.py" did not exist on "6b1602f1904861e392c3c92009f0efa596bc7880"
memory.go 9.37 KB
Newer Older
Daniel Hiltgen's avatar
Daniel Hiltgen committed
1
2
3
4
package llm

import (
	"log/slog"
5
6
	"strconv"
	"strings"
Daniel Hiltgen's avatar
Daniel Hiltgen committed
7
8
9
10
11
12
13
14
15

	"github.com/ollama/ollama/api"
	"github.com/ollama/ollama/format"
	"github.com/ollama/ollama/gpu"
)

// 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
19
20
		estimate := EstimateGPULayers(gpus, ggml, projectors, opts)
		layerCount, estimatedVRAM = estimate.Layers, estimate.VRAMSize
Daniel Hiltgen's avatar
Daniel Hiltgen committed
21
22
23
24
25
26
27
28
29
30
31
32
33
		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
}

34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
type MemoryEstimate struct {
	// How many layers we predict we can load
	Layers int

	// The size of the graph which occupies the main GPU
	Graph uint64

	// How much VRAM will be allocated given the number of layers we predict
	VRAMSize uint64

	// The total size of the model if loaded into VRAM.  If all layers are loaded, VRAMSize == TotalSize
	TotalSize uint64

	// For multi-GPU scenarios, this provides the tensor split parameter
	TensorSplit string

	// For multi-GPU scenarios, this is the size in bytes per GPU
	GPUSizes []uint64
}

Daniel Hiltgen's avatar
Daniel Hiltgen committed
54
// 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
55
// The GPUs provided must all be the same Library
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
func EstimateGPULayers(gpus []gpu.GpuInfo, ggml *GGML, projectors []string, opts api.Options) MemoryEstimate {
	// Graph size for a partial offload, applies to all GPUs
	var graphPartialOffload uint64

	// Graph size when all layers are offloaded, applies to all GPUs
	var graphFullOffload uint64

	// Final graph offload once we know full or partial
	var graphOffload uint64

	// Projectors loaded into GPU0 only
	var projectorSize uint64

	// Conditional output size on GPU 0
	var memoryLayerOutput uint64

Daniel Hiltgen's avatar
Daniel Hiltgen committed
72
73
	// The sizes of a layer
	var layerSize uint64
Daniel Hiltgen's avatar
Daniel Hiltgen committed
74

75
76
77
78
79
80
81
82
83
84
85
86
87
88
	// The sum of all the layer sizes (just for logging)
	var memoryWeights uint64

	// True if all the layers are loaded
	var fullyLoaded bool

	// Overflow that didn't fit into the GPU
	var overflow uint64

	availableList := make([]string, len(gpus))
	for i, gpu := range gpus {
		availableList[i] = format.HumanBytes2(gpu.FreeMemory)
	}
	slog.Debug("evaluating", "library", gpus[0].Library, "gpu_count", len(gpus), "available", availableList)
Daniel Hiltgen's avatar
Daniel Hiltgen committed
89
90

	for _, projector := range projectors {
91
		projectorSize += projectorMemoryRequirements(projector)
Daniel Hiltgen's avatar
Daniel Hiltgen committed
92
93
94
95
96

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

Michael Yang's avatar
Michael Yang committed
97
	layers := ggml.Tensors().Layers()
Michael Yang's avatar
typo  
Michael Yang committed
98
99
	// add one layer worth of memory as a buffer
	if blk0, ok := layers["blk.0"]; ok {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
100
101
102
		layerSize = blk0.size()
	} else {
		slog.Warn("model missing blk.0 layer size")
Michael Yang's avatar
typo  
Michael Yang committed
103
	}
Michael Yang's avatar
Michael Yang committed
104

Daniel Hiltgen's avatar
Daniel Hiltgen committed
105
106
107
	// 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()

Daniel Hiltgen's avatar
Daniel Hiltgen committed
108
109
110
	// KV is proportional to the number of layers
	layerSize += kv / ggml.KV().BlockCount()

111
	graphPartialOffload, graphFullOffload = ggml.GraphSize(uint64(opts.NumCtx), uint64(min(opts.NumCtx, opts.NumBatch)))
Daniel Hiltgen's avatar
Daniel Hiltgen committed
112
113
114
115
116
117
118
	if graphPartialOffload == 0 {
		graphPartialOffload = ggml.KV().GQA() * kv / 6
	}
	if graphFullOffload == 0 {
		graphFullOffload = graphPartialOffload
	}

119
120
121
	// on metal there's no partial offload overhead
	if gpus[0].Library == "metal" {
		graphPartialOffload = graphFullOffload
Daniel Hiltgen's avatar
Daniel Hiltgen committed
122
123
124
	} else if len(gpus) > 1 {
		// multigpu should always use the partial graph size
		graphFullOffload = graphPartialOffload
125
126
	}

127
128
129
130
131
132
133
	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
134
135
	}

Daniel Hiltgen's avatar
Daniel Hiltgen committed
136
	// Output layer handled at the end if we have space
137
138
139
	gpuZeroOverhead := projectorSize

	// Reduce set of GPUs to only those that have sufficient space to fit overhead and at least one layer
Michael Yang's avatar
Michael Yang committed
140
	var layerCount int
141
142
143
144
145
146
147
148
149
150
151
152
153
	layerCounts := make([]int, len(gpus))
	gpuAllocations := make([]uint64, len(gpus))
	type gs struct {
		i int
		g *gpu.GpuInfo
	}
	gpusWithSpace := []gs{}
	for i := range gpus {
		var gzo uint64
		if len(gpusWithSpace) == 0 {
			gzo = gpuZeroOverhead
		}
		// Only include GPUs that can fit the graph, gpu minimum, the layer buffer and at least more layer
Daniel Hiltgen's avatar
Daniel Hiltgen committed
154
		if gpus[i].FreeMemory < gzo+max(graphPartialOffload, graphFullOffload)+gpus[i].MinimumMemory+2*layerSize {
155
156
157
158
			slog.Debug("gpu has too little memory to allocate any layers", "gpu", gpus[i])
			continue
		}
		gpusWithSpace = append(gpusWithSpace, gs{i, &gpus[i]})
Daniel Hiltgen's avatar
Daniel Hiltgen committed
159
		gpuAllocations[i] += gpus[i].MinimumMemory + layerSize // We hold off on graph until we know partial vs. full
160
161
162
163
164
165
166
167
	}

	var gpuZeroID int
	if len(gpusWithSpace) > 0 {
		gpuZeroID = gpusWithSpace[0].i
		gpuAllocations[gpuZeroID] += gpuZeroOverhead
	}

Daniel Hiltgen's avatar
Daniel Hiltgen committed
168
	// For all the layers, find where they can fit on the GPU(s)
Michael Yang's avatar
lint  
Michael Yang committed
169
	for i := range int(ggml.KV().BlockCount()) {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
170
		memoryWeights += layerSize
Daniel Hiltgen's avatar
Daniel Hiltgen committed
171

172
173
174
175
176
177
178
179
180
		if opts.NumGPU >= 0 && layerCount >= opts.NumGPU {
			// Stop allocating on GPU(s) once we hit the users target NumGPU
			continue
		}

		// distribute the layers across the GPU(s) that have space
		for j := len(gpusWithSpace); j > 0; j-- {
			g := gpusWithSpace[i%j]
			used := gpuAllocations[g.i] + max(graphPartialOffload, graphFullOffload)
Daniel Hiltgen's avatar
Daniel Hiltgen committed
181
182
			if g.g.FreeMemory > used+layerSize {
				gpuAllocations[g.i] += layerSize
183
				layerCounts[g.i]++
Michael Yang's avatar
typo  
Michael Yang committed
184
				layerCount++
185
186
187
				break
			} else {
				gpusWithSpace = append(gpusWithSpace[:i%j], gpusWithSpace[i%j+1:]...)
Michael Yang's avatar
typo  
Michael Yang committed
188
			}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
189
		}
190
191
192
193
194
	}
	if layerCount >= int(ggml.KV().BlockCount()) {
		fullyLoaded = true
	} else {
		for i := layerCount; i < int(ggml.KV().BlockCount()); i++ {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
195
			overflow += layerSize
196
197
		}
	}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
198
199

	// Determine if we need to consider output then find where it fits
200
	if memoryLayerOutput > 0 && (opts.NumGPU < 0 || layerCount < opts.NumGPU) {
201
202
203
204
205
206
207
208
209
210
		for j := len(gpusWithSpace); j > 0; j-- {
			g := gpusWithSpace[layerCount%j]
			used := gpuAllocations[g.i] + max(graphPartialOffload, graphFullOffload)
			if g.g.FreeMemory > used+memoryLayerOutput {
				gpuAllocations[g.i] += memoryLayerOutput
				layerCounts[g.i]++
				layerCount++
				break
			}
		}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
211

212
213
214
215
		if layerCount < int(ggml.KV().BlockCount())+1 {
			fullyLoaded = false
			overflow += memoryLayerOutput
		}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
216
217
	}

218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
	// Add the applicable (full or partial) graph allocations
	for i := range gpus {
		if layerCounts[i] <= 0 {
			continue
		}
		if fullyLoaded {
			gpuAllocations[i] += graphFullOffload
		} else {
			gpuAllocations[i] += graphPartialOffload
		}
	}
	if fullyLoaded {
		graphOffload = graphFullOffload
	} else {
		graphOffload = graphPartialOffload
Daniel Hiltgen's avatar
Daniel Hiltgen committed
233
234
	}

235
236
237
238
	// Summaries for the log
	var memoryRequiredPartial, memoryRequiredTotal uint64
	for i := range gpuAllocations {
		memoryRequiredPartial += gpuAllocations[i]
Daniel Hiltgen's avatar
Daniel Hiltgen committed
239
	}
240
	memoryRequiredTotal = memoryRequiredPartial + overflow
Daniel Hiltgen's avatar
Daniel Hiltgen committed
241

242
243
244
245
246
247
248
249
250
251
252
253
	tensorSplit := ""
	if len(gpus) > 1 {
		splits := make([]string, len(gpus))
		for i, count := range layerCounts {
			splits[i] = strconv.Itoa(count)
		}
		tensorSplit = strings.Join(splits, ",")
	}
	allocationsList := []string{}
	for _, a := range gpuAllocations {
		allocationsList = append(allocationsList, format.HumanBytes2(a))
	}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
254
255
256
257
258

	slog.Info(
		"offload to gpu",
		slog.Group(
			"layers",
Michael Yang's avatar
Michael Yang committed
259
260
			// requested number of layers to offload
			"requested", opts.NumGPU,
261
262
			// The number of layers the model has (including output)
			"model", int(ggml.KV().BlockCount())+1,
Daniel Hiltgen's avatar
Daniel Hiltgen committed
263
			// estimated number of layers that can be offloaded
264
265
266
			"offload", layerCount,
			// multi-gpu split for tesnors
			"split", tensorSplit,
Daniel Hiltgen's avatar
Daniel Hiltgen committed
267
268
269
		),
		slog.Group(
			"memory",
270
271
			// memory available by GPU for offloading
			"available", availableList,
Daniel Hiltgen's avatar
Daniel Hiltgen committed
272
273
274
275
276
277
278
279
			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),
280
281
				// Allocations across the GPUs
				"allocations", allocationsList,
Daniel Hiltgen's avatar
Daniel Hiltgen committed
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
			),
			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
301
	if gpus[0].Library == "cpu" {
302
303
304
305
306
307
308
		return MemoryEstimate{
			Layers:    0,
			Graph:     0,
			VRAMSize:  0,
			TotalSize: memoryRequiredTotal,
			GPUSizes:  []uint64{},
		}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
309
	}
310
	if layerCount == 0 {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
311
		slog.Debug("insufficient VRAM to load any model layers")
312
313
314
315
316
317
318
		return MemoryEstimate{
			Layers:    0,
			Graph:     0,
			VRAMSize:  0,
			TotalSize: memoryRequiredTotal,
			GPUSizes:  []uint64{},
		}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
319
320
	}

321
322
323
324
325
326
327
328
	return MemoryEstimate{
		Layers:      layerCount,
		Graph:       graphOffload,
		VRAMSize:    memoryRequiredPartial,
		TotalSize:   memoryRequiredTotal,
		TensorSplit: tensorSplit,
		GPUSizes:    gpuAllocations,
	}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
329
}