We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af44916 commit c8c1351Copy full SHA for c8c1351
chgnet/trainer/trainer.py
@@ -188,7 +188,7 @@ def __init__(
188
self.device = "cpu"
189
if self.device == "cuda":
190
# Determine cuda device with most available memory
191
- device_with_most_available_memory = cuda_devices_sorted_by_free_mem()[0]
+ device_with_most_available_memory = cuda_devices_sorted_by_free_mem()[-1]
192
self.device = f"cuda:{device_with_most_available_memory}"
193
194
self.print_freq = print_freq
0 commit comments