Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
odjuricicTT committed Dec 26, 2024
1 parent 58bb8aa commit 58c7496
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/explorer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include(ExternalProject)
set(TT_EXPLORER_SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/run.py)
set(TTMLIR_BUILD_BIN_DIR ${TTMLIR_BINARY_DIR}/bin)

set(MODEL_EXPLORER_VERSION "8ec112eaee8006301039ee34c55d3751a1b82c14")
set(MODEL_EXPLORER_VERSION "cc339abfc354e6b37d294b13da6e16cee5b83baf")
ExternalProject_Add(
model-explorer
PREFIX ${CMAKE_CURRENT_SOURCE_DIR}/model-explorer
Expand Down
5 changes: 4 additions & 1 deletion tools/explorer/tt_adapter/src/tt_adapter/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,11 @@ def convert(
if perf_data:
# TODO(odjuricic) We can probably edit the actual graph response or create our own instead of just adding to dataclass.s
graph = utils.add_to_dataclass(
graph, "overlays", {"Performance Trace": perf_data.graphsData}
graph, "perf_data", perf_data.graphsData
)
# graph = utils.add_to_dataclass(
# graph, "overlays", {"Performance Trace": perf_data.graphsData}
# )

if overrides := self.model_runner.get_overrides(model_path):
graph = utils.add_to_dataclass(graph, "overrides", overrides)
Expand Down

0 comments on commit 58c7496

Please sign in to comment.