Skip to content

Commit

Permalink
typo when identifying H100 hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
benczaja committed Feb 5, 2025
1 parent 9f690ce commit 9686c7c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions eacctview/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from subprocess import Popen, PIPE
import os

import pdb
import numpy as np
import plotext as plx

Expand Down Expand Up @@ -100,7 +99,7 @@ def get_partition(self, data):
data['Arch'] = "AMD Genoa 9654 (2x)"
elif (node_type == "gcn") & (node_number <= 72):
data['Arch'] = "Intel Xeon Platinum 8360Y (2x)"
elif (node_type == "tcn") & (node_number > 72):
elif (node_type == "gcn") & (node_number > 72):
data['Arch'] = "AMD EPYC 9334 32-Core Processor (2x)"
else:
data['Arch'] = "UNK"
Expand Down

0 comments on commit 9686c7c

Please sign in to comment.