We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25742f0 commit 88329e2Copy full SHA for 88329e2
nvflare/app_common/resource_managers/gpu_resource_manager.py
@@ -58,7 +58,7 @@ def __init__(
58
raise ValueError("mem_per_gpu_in_GiB should be greater than or equal to 0.")
59
60
if not isinstance(expiration_period, (float, int)):
61
- raise ValueError(f"num_of_gpus should be of type int or float, but got {type(expiration_period)}.")
+ raise ValueError(f"expiration_period should be of type int or float, but got {type(expiration_period)}.")
62
if expiration_period < 0:
63
raise ValueError("expiration_period should be greater than or equal to 0.")
64
0 commit comments