Changes between Version 45 and Version 46 of AppCoprocessor
- Timestamp:
- Jul 30, 2014, 2:35:58 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppCoprocessor
v45 v46 36 36 Call '''boinc_get_init_data()''' to get an APP_INIT_DATA structure; 37 37 the device number (0, 1, ...) is in the '''gpu_device_num''' field. 38 39 38 Old (pre-7.0.12) clients pass the device number via a command-line argument, '''--device N'''. 40 39 In this case API_INIT_DATA::gpu_device_num will be -1, 41 40 and your application must check its command-line args. 41 So to be compatible with all clients, your app should do something like 42 {{{ 43 int device_num; 44 APP_INIT_DATA aid; 45 boinc_get_init_data(aid); 46 if (aid.gpu_device_num >= 0) { 47 device_num = aid.gpu_device_num; 48 } else { 49 device_num = (scan argc/argv for --device argument); 50 } 51 }}} 42 52 43 OpenCL apps shoulduse53 OpenCL apps don't need this; instead, use 44 54 the '''boinc_get_opencl_ids()''' API as described 45 55 [http://boinc.berkeley.edu/trac/wiki/OpenclApps here].