change: gpu status

This commit is contained in:
wql 2024-08-20 17:38:32 +08:00
parent 8793d13920
commit 6e99c064ad
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ def main():
gpuDeviceCount = pynvml.nvmlDeviceGetCount()
start_time = time.time()
while time.time() - start_time < 3600 *16:
while time.time() - start_time < 3600 *24:
# print(time.time() - start_time)
all_gpu_status = []
for i in range(gpuDeviceCount):
@ -28,7 +28,7 @@ def main():
)
with open("./results/gpu_status.json", "a", encoding="utf-8") as f:
f.write(json.dumps(logs) + "\n")
# print(logs)
print(logs)
time.sleep(60)
pynvml.nvmlShutdown()