mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-23 13:04:29 +00:00
Show the correct gpu devices only.
This commit is contained in:
parent
c36cc61f64
commit
5bbd3134c3
11
main.c
11
main.c
@ -1990,7 +1990,7 @@ static void *watchdog_thread(void *userdata)
|
|||||||
static void print_summary(void)
|
static void print_summary(void)
|
||||||
{
|
{
|
||||||
struct timeval diff;
|
struct timeval diff;
|
||||||
int hours, mins, secs, i, cpu_gpu = -1;
|
int hours, mins, secs, i;
|
||||||
double utility, efficiency = 0.0;
|
double utility, efficiency = 0.0;
|
||||||
|
|
||||||
timeval_subtract(&diff, &total_tv_end, &total_tv_start);
|
timeval_subtract(&diff, &total_tv_end, &total_tv_start);
|
||||||
@ -2024,10 +2024,11 @@ static void print_summary(void)
|
|||||||
|
|
||||||
printf("Summary of per device statistics:\n\n");
|
printf("Summary of per device statistics:\n\n");
|
||||||
for (i = 0; i < mining_threads; i++) {
|
for (i = 0; i < mining_threads; i++) {
|
||||||
if (thr_info[i].cgpu->cpu_gpu != cpu_gpu) {
|
if (i < gpu_threads) {
|
||||||
cpu_gpu = thr_info[i].cgpu->cpu_gpu;
|
if (i < nDevs && gpu_devices[gpu_from_thr_id(i)])
|
||||||
text_print_status(i);
|
print_status(i);
|
||||||
}
|
} else if (i < gpu_threads + num_processors)
|
||||||
|
print_status(i);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user