Commit 92e04f47cb2d1a3c3a5eccefbc595317c9e63a6b

Con Kolivas 2011-07-11T13:46:01

Make clear for multiple GPUs.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/main.c b/main.c
index b4c64ac..8f42f0a 100644
--- a/main.c
+++ b/main.c
@@ -1797,6 +1797,7 @@ int main (int argc, char *argv[])
 			}
 		gpu_threads = total_devices * opt_g_threads;
 	} else {
+		total_devices = nDevs;
 		gpu_threads = nDevs * opt_g_threads;
 		for (i = 0; i < nDevs; i++)
 			gpu_devices[i] = true;
@@ -1810,7 +1811,7 @@ int main (int argc, char *argv[])
 	logcursor = 4;
 	mining_threads = opt_n_threads + gpu_threads;
 	gpucursor = logcursor;
-	cpucursor = gpucursor + total_devices + 1;
+	cpucursor = gpucursor + total_devices;
 	logstart = cpucursor + (opt_n_threads ? num_processors : 0);
 	logcursor = logstart + 1;