diff --git a/checkin_notes b/checkin_notes index 85803d3894..916d30fde0 100644 --- a/checkin_notes +++ b/checkin_notes @@ -3765,3 +3765,15 @@ David 23 Jun 2011 client_types.cpp,h client_state.cpp cpu_sched.cpp + +David 23 Jun 2011 + - client: replace with + in cc_config.xml (but keep old one for compat) + + lib/ + coproc.h + cc_config.cpp,h + client/ + client_state.cpp + coproc_detect.cpp + log_flags.cpp diff --git a/client/client_state.cpp b/client/client_state.cpp index 144bc69e25..00ed487713 100644 --- a/client/client_state.cpp +++ b/client/client_state.cpp @@ -339,7 +339,7 @@ int CLIENT_STATE::init() { vector warnings; coprocs.get( config.use_all_gpus, descs, warnings, - config.ignore_cuda_dev, config.ignore_ati_dev + config.ignore_nvidia_dev, config.ignore_ati_dev ); for (i=0; i&warnings) { if (nvidia.have_cuda) { // If CUDA already found the "best" NVIDIA GPU for (i=0; i%d\n", - ignore_cuda_dev[i] + " %d\n", + ignore_nvidia_dev[i] ); } diff --git a/lib/cc_config.h b/lib/cc_config.h index 48b09e862c..807ad2e980 100644 --- a/lib/cc_config.h +++ b/lib/cc_config.h @@ -138,8 +138,8 @@ struct CONFIG { bool http_1_0; int http_transfer_timeout_bps; int http_transfer_timeout; - std::vector ignore_cuda_dev; std::vector ignore_ati_dev; + std::vector ignore_nvidia_dev; int max_file_xfers; int max_file_xfers_per_project; int max_stderr_file_size; diff --git a/lib/coproc.h b/lib/coproc.h index 89371c6c0f..f0c6e7643b 100644 --- a/lib/coproc.h +++ b/lib/coproc.h @@ -309,7 +309,7 @@ struct COPROCS { void get( bool use_all, std::vector &descs, std::vector &warnings, - std::vector& ignore_cuda_dev, + std::vector& ignore_nvidia_dev, std::vector& ignore_ati_dev ); void get_opencl(bool use_all, std::vector &warnings);