From 5ced959311bd63db9ebc033be83dc4c12662bfae Mon Sep 17 00:00:00 2001 From: Parth Raut Date: Sun, 20 Oct 2024 21:17:25 -0400 Subject: [PATCH] relaxed thresh to 80% --- zeus/device/gpu/amd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeus/device/gpu/amd.py b/zeus/device/gpu/amd.py index 01b2e894..36145b4a 100644 --- a/zeus/device/gpu/amd.py +++ b/zeus/device/gpu/amd.py @@ -256,7 +256,7 @@ def supportsGetTotalEnergyConsumption( ) -> bool: """Check if the GPU supports retrieving total energy consumption. Returns a future object of the result.""" wait_time = 0.5 # seconds - threshold = 0.01 # 1% threshold + threshold = 0.8 # 80% threshold power = self.getInstantPowerUsage() initial_energy = self.getTotalEnergyConsumption()