From b9e30c4f49cdf6dcd0e0e81e6f6119e4bfc17fb3 Mon Sep 17 00:00:00 2001 From: craig-warren Date: Tue, 7 Apr 2020 09:08:52 +0100 Subject: [PATCH] Updated GPU info printing. --- gprMax/contexts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gprMax/contexts.py b/gprMax/contexts.py index 4a3dd5d8..b86d2a45 100644 --- a/gprMax/contexts.py +++ b/gprMax/contexts.py @@ -92,7 +92,7 @@ class Context: """Print information about any NVIDIA CUDA GPUs detected.""" gpus_info = [] for gpu in config.sim_config.cuda['gpus']: - gpus_info.append(f'{gpu.deviceID} {gpu.pcibusID} - {gpu.name}, {human_size(gpu.totalmem, a_kilobyte_is_1024_bytes=True)} (on {gpu.hostname})') + gpus_info.append(f'{gpu.deviceID} {gpu.pcibusID} - {gpu.name}, {human_size(gpu.totalmem, a_kilobyte_is_1024_bytes=True)}') logger.basic(f"GPU resources: {' | '.join(gpus_info)}") def print_time_report(self):