Changes between Version 20 and Version 21 of AppCoprocessor
- Timestamp:
- Aug 21, 2009, 4:18:20 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppCoprocessor
v20 v21 56 56 ); 57 57 } 58 return PLAN_REJECT_CUDA_NO_DEVICE; 58 add_no_work_message("Your computer has no NVIDIA GPU"); 59 return false; 59 60 } 60 61 }}} … … 69 70 ); 70 71 } 71 return PLAN_REJECT_CUDA_VERSION; 72 } 72 add_no_work_message( 73 "Your NVIDIA GPU lacks the needed compute capability" 74 ); 75 } 73 76 }}} 74 77 … … 89 92 if (cp->cuda_version) { 90 93 if (cp->cuda_version < 2030) { 91 return PLAN_REJECT_CUDA_VERSION; 92 } 94 add_no_work_message("CUDA version 2.3 needed"); 95 return false; 96 } 93 97 } else if (cp->display_driver_version) { 94 98 if (cp->display_driver_version < PLAN_CUDA23_MIN_DRIVER_VERSION) { 95 return PLAN_REJECT_CUDA_VERSION; 96 } 99 sprintf(buf, "NVIDIA display driver %d or later needed", 100 PLAN_CUDA23_MIN_DRIVER_VERSION 101 ); 102 } 97 103 } else { 98 return PLAN_REJECT_CUDA_VERSION; 104 add_no_work_message("CUDA version 2.3 needed"); 105 return false; 99 106 } 100 107 }}} … … 109 116 ); 110 117 } 111 return PLAN_REJECT_CUDA_MEM; 118 sprintf(buf, 119 "Your NVIDIA GPU has insufficient memory (need %.0fMB)", 120 PLAN_CUDA_MIN_RAM 121 ); 122 add_no_work_message(buf); 123 return false; 112 124 } 113 125 }}} … … 138 150 }}} 139 151 140 Return 0to indicate that the application can be run on the host:152 Return true to indicate that the application can be run on the host: 141 153 {{{ 142 return 0;154 return true; 143 155 }}}