-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlibrary_windows.go
88 lines (82 loc) · 2.5 KB
/
library_windows.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//go:build windows
package opencl
import (
"syscall"
"unsafe"
)
func loadLibrary() (uintptr, error) {
handle, err := syscall.LoadLibrary("opencl.dll")
if err != nil {
return 0, err
}
// purego unsupported functions
dll := syscall.DLL{
Name: "opencl.dll",
Handle: handle,
}
// Note: Functions with too many arguments requiring manual loading
readImg := dll.MustFindProc("clEnqueueReadImage")
mapImg := dll.MustFindProc("clEnqueueMapImage")
mapBuffer := dll.MustFindProc("clEnqueueMapBuffer")
enqueueReadImage = func(queue CommandQueue, image Buffer, blockingRead bool, origin, region [3]clSize, row_pitch, slice_pitch clSize, ptr unsafe.Pointer, numEventsWaitList uint, eventWaitList []Event, event *Event) clStatus {
block := uintptr(0)
if blockingRead {
block = 1
}
r1, _, _ := readImg.Call(
uintptr(queue),
uintptr(image),
uintptr(block),
uintptr(unsafe.Pointer(&origin[0])),
uintptr(unsafe.Pointer(®ion[0])),
uintptr(row_pitch),
uintptr(slice_pitch),
uintptr(ptr),
uintptr(numEventsWaitList),
uintptr(0), // TODO: eventWaitList if non-nil
uintptr(unsafe.Pointer(event)),
)
return clStatus(r1)
}
enqueueMapImage = func(queue CommandQueue, image Buffer, blockingMap bool, mapFlags MapFlag, origin, region [3]clSize, imageRowPitch, imageSlicePitch *clSize, numEventsWaitList uint, eventWaitList []Event, event *Event, errCodeRet *clStatus) uintptr {
block := uintptr(0)
if blockingMap {
block = 1
}
r1, _, _ := mapImg.Call(
uintptr(queue),
uintptr(image),
uintptr(block),
uintptr(mapFlags),
uintptr(unsafe.Pointer(&origin[:][0])),
uintptr(unsafe.Pointer(®ion[:][0])),
uintptr(unsafe.Pointer(imageRowPitch)),
uintptr(unsafe.Pointer(imageSlicePitch)),
uintptr(numEventsWaitList),
uintptr(0), // TODO: eventWaitList if non-nil
uintptr(unsafe.Pointer(event)),
uintptr(unsafe.Pointer(errCodeRet)),
)
return r1
}
enqueueMapBuffer = func(queue CommandQueue, buffer Buffer, blockingMap bool, mapFlags MapFlag, offset, size clSize, numEventsWaitList uint, eventWaitList []Event, event *Event, errCodeRet *clStatus) uintptr {
block := uintptr(0)
if blockingMap {
block = 1
}
r1, _, _ := mapBuffer.Call(
uintptr(queue),
uintptr(buffer),
uintptr(block),
uintptr(mapFlags),
uintptr(offset),
uintptr(size),
uintptr(numEventsWaitList),
uintptr(0), // TODO: eventWaitList if non-nil
uintptr(unsafe.Pointer(event)),
uintptr(unsafe.Pointer(errCodeRet)),
)
return r1
}
return uintptr(handle), err
}