Changes between Version 28 and Version 29 of AppCoprocessor


Ignore:
Timestamp:
08/26/10 14:56:23 (3 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AppCoprocessor

    v28 v29  
    1010You can develop your application using any programming system, e.g. 
    1111CUDA (for NVIDIA), Brook+ (for ATI) or OpenCL. 
     12 
     13== Dealing with GPU memory allocation failures == 
     14 
     15GPUs don't have virtual memory. 
     16GPU memory allocations may fail because other applications are using the GPU. 
     17This is typically a temporary condition. 
     18Rather than exiting with an error in this case, call 
     19{{{ 
     20boinc_temporary_exit(60); 
     21}}} 
     22This will exit the application, and will tell the BOINC client to restart it again in at least 60 seconds. 
    1223 
    1324== Command-line arguments ==