Skip to content

Commit

Permalink
[Proton] Add a better description when possibly importing incorrect h…
Browse files Browse the repository at this point in the history
…atchet in Proton (#4565)
  • Loading branch information
CRobeck authored Aug 23, 2024
1 parent 54801fa commit d14f59a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion third_party/proton/proton/viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
from collections import namedtuple
import json
import pandas as pd
import hatchet as ht
try:
import hatchet as ht
except ImportError:
raise ImportError("Failed to import hatchet. `pip install llnl-hatchet` to get the correct version.")
import numpy as np
from hatchet.query import NegationQuery
from triton.profiler.hook import COMPUTE_METADATA_SCOPE_NAME, TritonHook
Expand Down

0 comments on commit d14f59a

Please sign in to comment.