gpu.go 15.2 KB
Newer Older
1
2
3
4
5
//go:build linux || windows

package gpu

/*
6
7
8
#cgo linux LDFLAGS: -lrt -lpthread -ldl -lstdc++ -lm
#cgo windows LDFLAGS: -lpthread

9
10
11
12
13
14
#include "gpu_info.h"

*/
import "C"
import (
	"fmt"
15
	"log/slog"
16
17
	"os"
	"path/filepath"
18
	"runtime"
19
	"strconv"
20
	"strings"
21
22
	"sync"
	"unsafe"
Michael Yang's avatar
Michael Yang committed
23

24
	"github.com/ollama/ollama/envconfig"
25
	"github.com/ollama/ollama/format"
26
27
28
)

type handles struct {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
29
30
	deviceCount int
	cudart      *C.cudart_handle_t
31
	nvcuda      *C.nvcuda_handle_t
Wang,Zhe's avatar
Wang,Zhe committed
32
	oneapi      *C.oneapi_handle_t
33
34
}

Michael Yang's avatar
Michael Yang committed
35
const (
Daniel Hiltgen's avatar
Daniel Hiltgen committed
36
37
	cudaMinimumMemory = 457 * format.MebiByte
	rocmMinimumMemory = 457 * format.MebiByte
Michael Yang's avatar
Michael Yang committed
38
39
)

40
41
42
43
44
45
46
47
48
49
50
51
var (
	gpuMutex      sync.Mutex
	bootstrapped  bool
	cpuCapability CPUCapability
	cpus          []CPUInfo
	cudaGPUs      []CudaGPUInfo
	nvcudaLibPath string
	cudartLibPath string
	oneapiLibPath string
	rocmGPUs      []RocmGPUInfo
	oneapiGPUs    []OneapiGPUInfo
)
52

53
54
// With our current CUDA compile flags, older than 5.0 will not work properly
var CudaComputeMin = [2]C.int{5, 0}
55

Daniel Hiltgen's avatar
Daniel Hiltgen committed
56
var RocmComputeMin = 9
57

Daniel Hiltgen's avatar
Daniel Hiltgen committed
58
59
// TODO find a better way to detect iGPU instead of minimum memory
const IGPUMemLimit = 1 * format.GibiByte // 512G is what they typically report, so anything less than 1G must be iGPU
60

61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
var CudartLinuxGlobs = []string{
	"/usr/local/cuda/lib64/libcudart.so*",
	"/usr/lib/x86_64-linux-gnu/nvidia/current/libcudart.so*",
	"/usr/lib/x86_64-linux-gnu/libcudart.so*",
	"/usr/lib/wsl/lib/libcudart.so*",
	"/usr/lib/wsl/drivers/*/libcudart.so*",
	"/opt/cuda/lib64/libcudart.so*",
	"/usr/local/cuda*/targets/aarch64-linux/lib/libcudart.so*",
	"/usr/lib/aarch64-linux-gnu/nvidia/current/libcudart.so*",
	"/usr/lib/aarch64-linux-gnu/libcudart.so*",
	"/usr/local/cuda/lib*/libcudart.so*",
	"/usr/lib*/libcudart.so*",
	"/usr/local/lib*/libcudart.so*",
}

var CudartWindowsGlobs = []string{
	"c:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v*\\bin\\cudart64_*.dll",
}

80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
var NvcudaLinuxGlobs = []string{
	"/usr/local/cuda*/targets/*/lib/libcuda.so*",
	"/usr/lib/*-linux-gnu/nvidia/current/libcuda.so*",
	"/usr/lib/*-linux-gnu/libcuda.so*",
	"/usr/lib/wsl/lib/libcuda.so*",
	"/usr/lib/wsl/drivers/*/libcuda.so*",
	"/opt/cuda/lib*/libcuda.so*",
	"/usr/local/cuda/lib*/libcuda.so*",
	"/usr/lib*/libcuda.so*",
	"/usr/local/lib*/libcuda.so*",
}

var NvcudaWindowsGlobs = []string{
	"c:\\windows\\system*\\nvcuda.dll",
}

Wang,Zhe's avatar
Wang,Zhe committed
96
97
98
99
100
101
102
103
104
var OneapiWindowsGlobs = []string{
	"c:\\Windows\\System32\\DriverStore\\FileRepository\\*\\ze_intel_gpu64.dll",
}

var OneapiLinuxGlobs = []string{
	"/usr/lib/x86_64-linux-gnu/libze_intel_gpu.so*",
	"/usr/lib*/libze_intel_gpu.so*",
}

105
106
107
108
// Jetson devices have JETSON_JETPACK="x.y.z" factory set to the Jetpack version installed.
// Included to drive logic for reducing Ollama-allocated overhead on L4T/Jetson devices.
var CudaTegra string = os.Getenv("JETSON_JETPACK")

109
// Note: gpuMutex must already be held
110
func initCudaHandles() *handles {
111

112
	// TODO - if the ollama build is CPU only, don't do these checks as they're irrelevant and confusing
113

Daniel Hiltgen's avatar
Daniel Hiltgen committed
114
	gpuHandles := &handles{}
115
116
117
118
119
120
121
122
123
124
125
	// Short Circuit if we already know which library to use
	if nvcudaLibPath != "" {
		gpuHandles.deviceCount, gpuHandles.nvcuda, _ = LoadNVCUDAMgmt([]string{nvcudaLibPath})
		return gpuHandles
	}
	if cudartLibPath != "" {
		gpuHandles.deviceCount, gpuHandles.cudart, _ = LoadCUDARTMgmt([]string{cudartLibPath})
		return gpuHandles
	}

	slog.Debug("searching for GPU discovery libraries for NVIDIA")
126
127
	var cudartMgmtName string
	var cudartMgmtPatterns []string
128
129
	var nvcudaMgmtName string
	var nvcudaMgmtPatterns []string
130
131
	var oneapiMgmtName string
	var oneapiMgmtPatterns []string
132
133

	tmpDir, _ := PayloadsDir()
134
135
	switch runtime.GOOS {
	case "windows":
136
137
138
139
		cudartMgmtName = "cudart64_*.dll"
		localAppData := os.Getenv("LOCALAPPDATA")
		cudartMgmtPatterns = []string{filepath.Join(localAppData, "Programs", "Ollama", cudartMgmtName)}
		cudartMgmtPatterns = append(cudartMgmtPatterns, CudartWindowsGlobs...)
140
141
142
		// Aligned with driver, we can't carry as payloads
		nvcudaMgmtName = "nvcuda.dll"
		nvcudaMgmtPatterns = NvcudaWindowsGlobs
143
144
		oneapiMgmtName = "ze_intel_gpu64.dll"
		oneapiMgmtPatterns = OneapiWindowsGlobs
145
	case "linux":
146
147
148
149
150
151
		cudartMgmtName = "libcudart.so*"
		if tmpDir != "" {
			// TODO - add "payloads" for subprocess
			cudartMgmtPatterns = []string{filepath.Join(tmpDir, "cuda*", cudartMgmtName)}
		}
		cudartMgmtPatterns = append(cudartMgmtPatterns, CudartLinuxGlobs...)
152
153
154
		// Aligned with driver, we can't carry as payloads
		nvcudaMgmtName = "libcuda.so*"
		nvcudaMgmtPatterns = NvcudaLinuxGlobs
155
156
		oneapiMgmtName = "libze_intel_gpu.so"
		oneapiMgmtPatterns = OneapiLinuxGlobs
157
	default:
158
		return gpuHandles
159
160
	}

161
162
163
164
	nvcudaLibPaths := FindGPULibs(nvcudaMgmtName, nvcudaMgmtPatterns)
	if len(nvcudaLibPaths) > 0 {
		deviceCount, nvcuda, libPath := LoadNVCUDAMgmt(nvcudaLibPaths)
		if nvcuda != nil {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
165
			slog.Debug("detected GPUs", "count", deviceCount, "library", libPath)
166
167
			gpuHandles.nvcuda = nvcuda
			gpuHandles.deviceCount = deviceCount
168
			nvcudaLibPath = libPath
169
170
171
172
			return gpuHandles
		}
	}

173
174
	cudartLibPaths := FindGPULibs(cudartMgmtName, cudartMgmtPatterns)
	if len(cudartLibPaths) > 0 {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
175
		deviceCount, cudart, libPath := LoadCUDARTMgmt(cudartLibPaths)
176
		if cudart != nil {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
177
			slog.Debug("detected GPUs", "library", libPath, "count", deviceCount)
178
			gpuHandles.cudart = cudart
Daniel Hiltgen's avatar
Daniel Hiltgen committed
179
			gpuHandles.deviceCount = deviceCount
180
			cudartLibPath = libPath
181
			return gpuHandles
182
183
		}
	}
Wang,Zhe's avatar
Wang,Zhe committed
184

185
186
187
188
189
190
191
	oneapiLibPaths := FindGPULibs(oneapiMgmtName, oneapiMgmtPatterns)
	if len(oneapiLibPaths) > 0 {
		deviceCount, oneapi, libPath := LoadOneapiMgmt(oneapiLibPaths)
		if oneapi != nil {
			slog.Debug("detected Intel GPUs", "library", libPath, "count", deviceCount)
			gpuHandles.oneapi = oneapi
			gpuHandles.deviceCount = deviceCount
192
			oneapiLibPath = libPath
193
194
195
196
			return gpuHandles
		}
	}

197
	return gpuHandles
198
199
}

Daniel Hiltgen's avatar
Daniel Hiltgen committed
200
func GetGPUInfo() GpuInfoList {
201
202
203
204
	// TODO - consider exploring lspci (and equivalent on windows) to check for
	// GPUs so we can report warnings if we see Nvidia/AMD but fail to load the libraries
	gpuMutex.Lock()
	defer gpuMutex.Unlock()
205
206
	needRefresh := true
	var gpuHandles *handles
207
	defer func() {
208
209
210
		if gpuHandles == nil {
			return
		}
211
212
213
		if gpuHandles.cudart != nil {
			C.cudart_release(*gpuHandles.cudart)
		}
214
215
216
		if gpuHandles.nvcuda != nil {
			C.nvcuda_release(*gpuHandles.nvcuda)
		}
217
	}()
218

219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
	if !bootstrapped {
		slog.Debug("Detecting GPUs")
		needRefresh = false
		cpuCapability = getCPUCapability()
		var memInfo C.mem_info_t
		C.cpu_check_ram(&memInfo)
		if memInfo.err != nil {
			slog.Info("error looking up CPU memory", "error", C.GoString(memInfo.err))
			C.free(unsafe.Pointer(memInfo.err))
			return []GpuInfo{}
		}
		cpuInfo := CPUInfo{
			GpuInfo: GpuInfo{
				Library: "cpu",
				Variant: cpuCapability.ToVariant(),
			},
		}
		cpuInfo.TotalMemory = uint64(memInfo.total)
		cpuInfo.FreeMemory = uint64(memInfo.free)
		cpuInfo.ID = C.GoString(&memInfo.gpu_id[0])
		cpus = []CPUInfo{cpuInfo}

		// Fallback to CPU mode if we're lacking required vector extensions on x86
		if cpuCapability < GPURunnerCPUCapability && runtime.GOARCH == "amd64" {
			slog.Warn("CPU does not have minimum vector extensions, GPU inference disabled", "required", GPURunnerCPUCapability.ToString(), "detected", cpuCapability.ToString())
			bootstrapped = true
			// No need to do any GPU discovery, since we can't run on them
			return GpuInfoList{cpus[0].GpuInfo}
		}
248

249
250
251
252
		// On windows we bundle the nvidia library one level above the runner dir
		depPath := ""
		if runtime.GOOS == "windows" && envconfig.RunnersDir != "" {
			depPath = filepath.Dir(envconfig.RunnersDir)
253
		}
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298

		// Load ALL libraries
		gpuHandles = initCudaHandles()

		// TODO needs a refactoring pass to init oneapi handles

		// NVIDIA
		for i := range gpuHandles.deviceCount {
			if gpuHandles.cudart != nil || gpuHandles.nvcuda != nil {
				gpuInfo := CudaGPUInfo{
					GpuInfo: GpuInfo{
						Library: "cuda",
					},
					index: i,
				}
				var driverMajor int
				var driverMinor int
				if gpuHandles.cudart != nil {
					C.cudart_bootstrap(*gpuHandles.cudart, C.int(i), &memInfo)
				} else {
					C.nvcuda_bootstrap(*gpuHandles.nvcuda, C.int(i), &memInfo)
					driverMajor = int(gpuHandles.nvcuda.driver_major)
					driverMinor = int(gpuHandles.nvcuda.driver_minor)
				}
				if memInfo.err != nil {
					slog.Info("error looking up nvidia GPU memory", "error", C.GoString(memInfo.err))
					C.free(unsafe.Pointer(memInfo.err))
					continue
				}
				if memInfo.major < CudaComputeMin[0] || (memInfo.major == CudaComputeMin[0] && memInfo.minor < CudaComputeMin[1]) {
					slog.Info(fmt.Sprintf("[%d] CUDA GPU is too old. Compute Capability detected: %d.%d", i, memInfo.major, memInfo.minor))
					continue
				}
				gpuInfo.TotalMemory = uint64(memInfo.total)
				gpuInfo.FreeMemory = uint64(memInfo.free)
				gpuInfo.ID = C.GoString(&memInfo.gpu_id[0])
				gpuInfo.Compute = fmt.Sprintf("%d.%d", memInfo.major, memInfo.minor)
				gpuInfo.MinimumMemory = cudaMinimumMemory
				gpuInfo.DependencyPath = depPath
				gpuInfo.Name = C.GoString(&memInfo.gpu_name[0])
				gpuInfo.DriverMajor = int(driverMajor)
				gpuInfo.DriverMinor = int(driverMinor)

				// TODO potentially sort on our own algorithm instead of what the underlying GPU library does...
				cudaGPUs = append(cudaGPUs, gpuInfo)
Wang,Zhe's avatar
Wang,Zhe committed
299
			}
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
			if gpuHandles.oneapi != nil {
				gpuInfo := OneapiGPUInfo{
					GpuInfo: GpuInfo{
						Library: "oneapi",
					},
					index: i,
				}
				// TODO - split bootstrapping from updating free memory
				C.oneapi_check_vram(*gpuHandles.oneapi, &memInfo)
				var totalFreeMem float64 = float64(memInfo.free) * 0.95 // work-around: leave some reserve vram for mkl lib used in ggml-sycl backend.
				memInfo.free = C.uint64_t(totalFreeMem)
				gpuInfo.TotalMemory = uint64(memInfo.total)
				gpuInfo.FreeMemory = uint64(memInfo.free)
				gpuInfo.ID = strconv.Itoa(i)
				oneapiGPUs = append(oneapiGPUs, gpuInfo)
			}
		}

		rocmGPUs = AMDGetGPUInfo()
		bootstrapped = true
	}

	// For detected GPUs, load library if not loaded

	// Refresh free memory usage
	if needRefresh {
		// TODO - CPU system memory tracking/refresh
		var memInfo C.mem_info_t
		if gpuHandles == nil && len(cudaGPUs) > 0 {
			gpuHandles = initCudaHandles()
		}
		for i, gpu := range cudaGPUs {
Wang,Zhe's avatar
Wang,Zhe committed
332
			if gpuHandles.cudart != nil {
333
				C.cudart_bootstrap(*gpuHandles.cudart, C.int(gpu.index), &memInfo)
Wang,Zhe's avatar
Wang,Zhe committed
334
			} else {
335
				C.nvcuda_get_free(*gpuHandles.nvcuda, C.int(gpu.index), &memInfo.free)
Wang,Zhe's avatar
Wang,Zhe committed
336
337
			}
			if memInfo.err != nil {
338
				slog.Warn("error looking up nvidia GPU memory", "error", C.GoString(memInfo.err))
Wang,Zhe's avatar
Wang,Zhe committed
339
340
341
				C.free(unsafe.Pointer(memInfo.err))
				continue
			}
342
343
			if memInfo.free == 0 {
				slog.Warn("error looking up nvidia GPU memory")
Wang,Zhe's avatar
Wang,Zhe committed
344
345
				continue
			}
346
347
			slog.Debug("updating cuda free memory", "gpu", gpu.ID, "name", gpu.Name, "before", format.HumanBytes2(gpu.FreeMemory), "now", format.HumanBytes2(uint64(memInfo.free)))
			cudaGPUs[i].FreeMemory = uint64(memInfo.free)
348
		}
349
350
351
		err := RocmGPUInfoList(rocmGPUs).RefreshFreeMemory()
		if err != nil {
			slog.Debug("problem refreshing ROCm free memory", "error", err)
352
		}
353
	}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
354

355
356
357
358
359
360
361
	resp := []GpuInfo{}
	for _, gpu := range cudaGPUs {
		resp = append(resp, gpu.GpuInfo)
	}
	for _, gpu := range rocmGPUs {
		resp = append(resp, gpu.GpuInfo)
	}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
362
	if len(resp) == 0 {
363
		resp = append(resp, cpus[0].GpuInfo)
364
365
366
367
	}
	return resp
}

Daniel Hiltgen's avatar
Daniel Hiltgen committed
368
func GetCPUMem() (memInfo, error) {
369
370
371
372
373
374
375
376
377
378
379
380
	var ret memInfo
	var info C.mem_info_t
	C.cpu_check_ram(&info)
	if info.err != nil {
		defer C.free(unsafe.Pointer(info.err))
		return ret, fmt.Errorf(C.GoString(info.err))
	}
	ret.FreeMemory = uint64(info.free)
	ret.TotalMemory = uint64(info.total)
	return ret, nil
}

381
func FindGPULibs(baseLibName string, defaultPatterns []string) []string {
382
383
	// Multiple GPU libraries may exist, and some may not work, so keep trying until we exhaust them
	var ldPaths []string
384
	var patterns []string
385
	gpuLibPaths := []string{}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
386
	slog.Debug("Searching for GPU library", "name", baseLibName)
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403

	switch runtime.GOOS {
	case "windows":
		ldPaths = strings.Split(os.Getenv("PATH"), ";")
	case "linux":
		ldPaths = strings.Split(os.Getenv("LD_LIBRARY_PATH"), ":")
	default:
		return gpuLibPaths
	}
	// Start with whatever we find in the PATH/LD_LIBRARY_PATH
	for _, ldPath := range ldPaths {
		d, err := filepath.Abs(ldPath)
		if err != nil {
			continue
		}
		patterns = append(patterns, filepath.Join(d, baseLibName+"*"))
	}
404
	patterns = append(patterns, defaultPatterns...)
Daniel Hiltgen's avatar
Daniel Hiltgen committed
405
	slog.Debug("gpu library search", "globs", patterns)
406
	for _, pattern := range patterns {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
407
408
409
410

		// Nvidia PhysX known to return bogus results
		if strings.Contains(pattern, "PhysX") {
			slog.Debug("skipping PhysX cuda library path", "path", pattern)
411
			continue
Daniel Hiltgen's avatar
Daniel Hiltgen committed
412
		}
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
		// Ignore glob discovery errors
		matches, _ := filepath.Glob(pattern)
		for _, match := range matches {
			// Resolve any links so we don't try the same lib multiple times
			// and weed out any dups across globs
			libPath := match
			tmp := match
			var err error
			for ; err == nil; tmp, err = os.Readlink(libPath) {
				if !filepath.IsAbs(tmp) {
					tmp = filepath.Join(filepath.Dir(libPath), tmp)
				}
				libPath = tmp
			}
			new := true
			for _, cmp := range gpuLibPaths {
				if cmp == libPath {
					new = false
					break
				}
			}
			if new {
				gpuLibPaths = append(gpuLibPaths, libPath)
			}
		}
	}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
439
	slog.Debug("discovered GPU libraries", "paths", gpuLibPaths)
440
441
442
	return gpuLibPaths
}

Daniel Hiltgen's avatar
Daniel Hiltgen committed
443
func LoadCUDARTMgmt(cudartLibPaths []string) (int, *C.cudart_handle_t, string) {
444
	var resp C.cudart_init_resp_t
445
	resp.ch.verbose = getVerboseState()
446
	for _, libPath := range cudartLibPaths {
447
448
		lib := C.CString(libPath)
		defer C.free(unsafe.Pointer(lib))
449
		C.cudart_init(lib, &resp)
450
		if resp.err != nil {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
451
			slog.Debug("Unable to load cudart", "library", libPath, "error", C.GoString(resp.err))
452
453
			C.free(unsafe.Pointer(resp.err))
		} else {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
454
			return int(resp.num_devices), &resp.ch, libPath
455
456
		}
	}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
457
	return 0, nil, ""
458
459
}

460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
func LoadNVCUDAMgmt(nvcudaLibPaths []string) (int, *C.nvcuda_handle_t, string) {
	var resp C.nvcuda_init_resp_t
	resp.ch.verbose = getVerboseState()
	for _, libPath := range nvcudaLibPaths {
		lib := C.CString(libPath)
		defer C.free(unsafe.Pointer(lib))
		C.nvcuda_init(lib, &resp)
		if resp.err != nil {
			slog.Debug("Unable to load nvcuda", "library", libPath, "error", C.GoString(resp.err))
			C.free(unsafe.Pointer(resp.err))
		} else {
			return int(resp.num_devices), &resp.ch, libPath
		}
	}
	return 0, nil, ""
}

Wang,Zhe's avatar
Wang,Zhe committed
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
func LoadOneapiMgmt(oneapiLibPaths []string) (int, *C.oneapi_handle_t, string) {
	var resp C.oneapi_init_resp_t
	resp.oh.verbose = getVerboseState()
	for _, libPath := range oneapiLibPaths {
		lib := C.CString(libPath)
		defer C.free(unsafe.Pointer(lib))
		C.oneapi_init(lib, &resp)
		if resp.err != nil {
			slog.Debug("Unable to load oneAPI management library", "library", libPath, "error", C.GoString(resp.err))
			C.free(unsafe.Pointer(resp.err))
		} else {
			return int(resp.num_devices), &resp.oh, libPath
		}
	}
	return 0, nil, ""
}

494
func getVerboseState() C.uint16_t {
495
	if envconfig.Debug {
496
497
498
499
		return C.uint16_t(1)
	}
	return C.uint16_t(0)
}
Daniel Hiltgen's avatar
Daniel Hiltgen committed
500
501
502
503
504
505
506
507
508
509
510
511
512
513

// Given the list of GPUs this instantiation is targeted for,
// figure out the visible devices environment variable
//
// If different libraries are detected, the first one is what we use
func (l GpuInfoList) GetVisibleDevicesEnv() (string, string) {
	if len(l) == 0 {
		return "", ""
	}
	switch l[0].Library {
	case "cuda":
		return cudaGetVisibleDevicesEnv(l)
	case "rocm":
		return rocmGetVisibleDevicesEnv(l)
Wang,Zhe's avatar
Wang,Zhe committed
514
515
	case "oneapi":
		return oneapiGetVisibleDevicesEnv(l)
Daniel Hiltgen's avatar
Daniel Hiltgen committed
516
517
518
519
520
	default:
		slog.Debug("no filter required for library " + l[0].Library)
		return "", ""
	}
}