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
134
135
136
137
138
139
140
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
use crate::objects::bitfields::DeviceType;
use crate::objects::enums::{ParamValue, Size};
use crate::objects::functions::status_update;
use crate::objects::structs::ContextInfo;
use crate::objects::traits::GetSetGo;
use crate::objects::types::{APIResult, ContextPtr, DeviceList, Properties};
use crate::objects::wrappers::WrappedMutablePointer;
use crate::{gen_param_value, size_getter};
use libc::c_void;
use opencl_heads::ffi;
use opencl_heads::ffi::clGetContextInfo;
use opencl_heads::types::*;
use std::ptr;
pub fn create_context(
properties: &Properties,
devices: DeviceList,
pfn_notify: Option<extern "C" fn(*const c_char, *const c_void, size_t, *mut c_void)>,
user_data: WrappedMutablePointer<c_void>,
) -> APIResult<ContextPtr> {
let fn_name = "clCreateContext";
let mut status_code = 0;
let properties = match properties {
Some(x) => x.as_ptr(),
None => ptr::null(),
};
let context = unsafe {
ffi::clCreateContext(
properties,
devices.len() as cl_uint,
devices.as_ptr(),
pfn_notify,
user_data.unwrap(),
&mut status_code,
)
};
status_update(
status_code,
fn_name,
ContextPtr::from_ptr(context, fn_name)?,
)
}
pub fn create_context_from_type(
properties: &Properties,
device_type: DeviceType,
pfn_notify: Option<extern "C" fn(*const c_char, *const c_void, size_t, *mut c_void)>,
user_data: WrappedMutablePointer<c_void>,
) -> APIResult<ContextPtr> {
let fn_name = "clCreateContextFromType";
let mut status_code = 0;
let properties = match properties {
Some(x) => x.as_ptr(),
None => ptr::null(),
};
let context = unsafe {
ffi::clCreateContextFromType(
properties,
device_type.get(),
pfn_notify,
user_data.unwrap(),
&mut status_code,
)
};
status_update(
status_code,
fn_name,
ContextPtr::from_ptr(context, fn_name)?,
)
}
pub fn retain_context(context: &ContextPtr) -> APIResult<()> {
let status_code = unsafe { ffi::clRetainContext(context.unwrap()) };
status_update(status_code, "clRetainContext", ())
}
pub fn release_context(context: ContextPtr) -> APIResult<()> {
let status_code = unsafe { ffi::clReleaseContext(context.unwrap()) };
status_update(status_code, "clReleaseContext", ())
}
pub fn get_context_info(
context: &ContextPtr,
param_name: cl_context_info,
) -> APIResult<ParamValue> {
type C = ContextInfo;
let context = context.unwrap();
size_getter!(get_context_info_size, clGetContextInfo);
match param_name {
C::REFERENCE_COUNT | C::NUM_DEVICES => {
let param_value = gen_param_value!(clGetContextInfo, u32, context, param_name);
Ok(ParamValue::UInt(param_value))
}
C::DEVICES | C::PROPERTIES => {
let size = get_context_info_size(context, param_name)?;
let param_value = gen_param_value!(clGetContextInfo, isize, context, param_name, size);
Ok(ParamValue::ArrCPtr(param_value))
}
_ => status_update(40404, "clGetContextInfo", ParamValue::default()),
}
}
pub fn set_context_destructor_callback(
context: &ContextPtr,
pfn_notify: extern "C" fn(context: cl_context, user_data: *mut c_void),
user_data: WrappedMutablePointer<c_void>,
) -> APIResult<()> {
let status_code = unsafe {
ffi::clSetContextDestructorCallback(context.unwrap(), pfn_notify, user_data.unwrap())
};
status_update(status_code, "clSetContextDestructorCallback", ())
}
#[cfg(test)]
mod tests {
use super::*;
use crate::api::device::get_device_ids;
use crate::api::platform::get_platform_ids;
use crate::objects::bitfields::DeviceType;
use crate::objects::property::ContextProperties;
use crate::objects::types::{PlatformPtr, WrapMutPtr};
#[test]
fn test_create_context() {
let platform_ids = get_platform_ids().unwrap();
let platform_id = PlatformPtr::from_ptr(platform_ids[0], "test_fn").unwrap();
let device_ids =
get_device_ids(&platform_id, DeviceType::new(DeviceType::DEFAULT).unwrap()).unwrap();
assert!(0 < device_ids.len());
let context = create_context(&None, device_ids, None, WrapMutPtr::null());
let context = context.unwrap();
eprintln!("CL_CONTEXT_PTR: {:?}", context);
assert_ne!(context.unwrap(), ptr::null_mut());
release_context(context).unwrap();
}
#[test]
fn test_create_context_from_type() {
let platform_ids = get_platform_ids().unwrap();
let platform_id = PlatformPtr::from_ptr(platform_ids[0], "test_fn").unwrap();
let properties = ContextProperties.gen(Some(&platform_id), None);
let default_device = DeviceType::new(DeviceType::DEFAULT).unwrap();
let context =
create_context_from_type(&properties, default_device, None, WrapMutPtr::null());
let context = context.unwrap();
eprintln!("CL_CONTEXT_PTR: {:?}", context);
assert_ne!(context.unwrap(), ptr::null_mut());
release_context(context).unwrap();
}
#[test]
fn test_get_context_info_1() {
let platform_ids = get_platform_ids().unwrap();
let platform_id = PlatformPtr::from_ptr(platform_ids[0], "test_fn").unwrap();
let properties = ContextProperties.gen(Some(&platform_id), None);
let default_device = DeviceType::new(DeviceType::DEFAULT).unwrap();
let context = create_context_from_type(
&properties,
default_device,
None,
WrappedMutablePointer::null(),
);
let context = context.unwrap();
eprintln!("CL_CONTEXT_PTR: {:?}", context);
assert_ne!(context.unwrap(), ptr::null_mut());
let device = get_context_info(&context, ContextInfo::DEVICES);
eprintln!("CL_CONTEXT_DEVICE: {:?}", device);
assert_ne!(device.unwrap().unwrap_arr_cptr().unwrap()[0], 0);
let properties = get_context_info(&context, ContextInfo::PROPERTIES);
eprintln!("CL_CONTEXT_PROPERTIES: {:?}", properties);
let re_platform_id = properties.unwrap().unwrap_arr_cptr().unwrap()[1];
assert_eq!(re_platform_id, platform_id.unwrap() as isize);
release_context(context).unwrap();
}
#[test]
fn test_get_context_info_2() {
let platform_ids = get_platform_ids().unwrap();
let platform_id = PlatformPtr::from_ptr(platform_ids[0], "test_fn").unwrap();
let properties = ContextProperties.gen(Some(&platform_id), None);
let default_device = DeviceType::new(DeviceType::DEFAULT).unwrap();
let context = create_context_from_type(
&properties,
default_device,
None,
WrappedMutablePointer::null(),
);
let context = context.unwrap();
eprintln!("CL_CONTEXT_PTR: {:?}", context);
assert_ne!(context.unwrap(), ptr::null_mut());
let device_count = get_context_info(&context, ContextInfo::NUM_DEVICES);
eprintln!("CL_CONTEXT_DEVICE_COUNT: {:?}", device_count);
assert_ne!(device_count.unwrap().unwrap_uint().unwrap(), 0);
let ref_count = get_context_info(&context, ContextInfo::REFERENCE_COUNT);
eprintln!("CL_CONTEXT_REFERENCE_COUNT: {:?}", ref_count);
assert_ne!(ref_count.unwrap().unwrap_uint().unwrap(), 0);
release_context(context).unwrap();
}
}