-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprogram.go
133 lines (112 loc) · 2.58 KB
/
program.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package opencl
import (
"errors"
"strings"
"unsafe"
)
type Program uint
type programBuildInfo uint32
const (
programBuildStatus programBuildInfo = 0x1181
programBuildOptions programBuildInfo = 0x1182
programBuildLog programBuildInfo = 0x1183
)
type Version string
const (
Version1_0 Version = "CL1.0"
Version1_1 Version = "CL1.1"
Version1_2 Version = "CL1.2"
Version2_0 Version = "CL2.0"
Version3_0 Version = "CL3.0"
)
type ProgramBuildOptions struct {
// Preprocessor options
Warnings bool
Macros map[string]string
DirectoryIncludes []string
Version Version
// Math intrinsics options
SinglePrecisionConstant bool
MadEnable bool
NoSignedZeros bool
FastRelaxedMaths bool
// Extensions
NvidiaVerbose bool
}
func (po *ProgramBuildOptions) String() string {
if po == nil {
return ""
}
var sb strings.Builder
// Preprocessor
if po.Warnings {
sb.WriteString("-w")
sb.WriteRune(' ')
}
if po.Version != "" {
sb.WriteString("-cl-std=" + string(po.Version))
sb.WriteRune(' ')
}
// Math intrinsics
if po.SinglePrecisionConstant {
sb.WriteString("-cl-single-precision-constant")
sb.WriteRune(' ')
}
if po.MadEnable {
sb.WriteString("-cl-mad-enable")
sb.WriteRune(' ')
}
if po.NoSignedZeros {
sb.WriteString("-cl-no-signed-zeros")
sb.WriteRune(' ')
}
if po.FastRelaxedMaths {
sb.WriteString("-cl-fast-relaxed-math")
sb.WriteRune(' ')
}
// Extensions
if po.NvidiaVerbose {
sb.WriteString("-cl-nv-verbose")
sb.WriteRune(' ')
}
return sb.String()
}
func (p Program) Build(device Device, opts *ProgramBuildOptions) (string, error) {
var err error
st := buildProgram(
p, 1, []Device{device}, opts.String(), nil, nil,
)
if st != CL_SUCCESS {
err = errors.New("oops at build program")
}
var logsSize clSize
st = getProgramBuildInfo(
p, device, programBuildLog, 0, nil, &logsSize,
)
if st != CL_SUCCESS {
return "", errors.New("oops at 1st get program build info")
}
var logs = make([]byte, logsSize)
st = getProgramBuildInfo(
p, device, programBuildLog, logsSize, unsafe.Pointer(&logs[0]), nil,
)
if st != CL_SUCCESS {
return "", errors.New("oops at 2nd get program build info")
}
return string(logs), err
}
func (p Program) CreateKernel(name string) (Kernel, error) {
var st clStatus
kernel := createKernel(p, name, &st)
if st != CL_SUCCESS {
return 0, errors.New("oops at create kernel")
}
return kernel, nil
}
func (p Program) Release() error {
st := releaseProgram(p)
if st != CL_SUCCESS {
return errors.New("oops at release program")
}
return nil
}