From 61ede4c4e8db42cd4b97846bd21b2a6011175cc0 Mon Sep 17 00:00:00 2001 From: davidpanderson Date: Mon, 30 Dec 2024 15:37:32 -0800 Subject: [PATCH] client: fix bug that caused client to treat all jobs as 1-CPU --- client/client_types.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client_types.cpp b/client/client_types.cpp index ff1900c5d0..52b6d381d9 100644 --- a/client/client_types.cpp +++ b/client/client_types.cpp @@ -783,7 +783,7 @@ int FILE_INFO::gunzip(char* md5_buf) { #endif // SIM void RESOURCE_USAGE::clear() { - avg_ncpus = 1; + avg_ncpus = 0; rsc_type = 0; coproc_usage = 0; gpu_ram = 0;