Skip to content

Commit

Permalink
argh
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Aug 26, 2024
1 parent 10511dc commit 9f68c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def send_payload_to_api(args, output_files_gcs_paths, logs_gcs_path, workflow_na

local_machine_stats["vram_time_series"] = {f"{i / 2} seconds": vram_time_series[i] for i in range(len(vram_time_series))}
local_machine_stats["vram_time_series"]["total"] = f"{get_vramtotal()},{available_ram} MiB"
vram_only = [int(vram.split(",")[0].split(" ")[0]) for vram in vram_time_series]
vram_only = [float(vram.split(",")[0].split(" ")[0]) for vram in vram_time_series]

avg_vram = 0
peak_vram = 0
Expand Down

0 comments on commit 9f68c01

Please sign in to comment.