Changes between Version 31 and Version 32 of AppCoprocessor
- Timestamp:
- Jun 6, 2011, 10:09:17 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppCoprocessor
v31 v32 22 22 This will exit the application, and will tell the BOINC client to restart it again in at least 60 seconds. 23 23 24 == Command-line arguments==24 == Device selection == 25 25 26 26 Some hosts have multiple GPUs. … … 36 36 }}} 37 37 38 == Finalizing GPU on premature exit == 39 40 The BOINC client may kill your application in the middle. 41 This may leave the GPU in a bad state. 42 To prevent this, call 43 {{{ 44 boinc_begin_critical_section(); 45 }}} 46 before using the GPU, and between GPU kernels do 47 {{{ 48 if (boinc_status.quit_request || boinc_status.abort_request) { 49 // cudaThreadSynchronize(); or whatever is needed 50 boinc_end_critical_section(); 51 while (1) boinc_sleep(1); 52 } 38 53 == Plan classes == 39 54