Skip to content

Commit b1b6f5d

Browse files
committed
fix
1 parent 3d809b7 commit b1b6f5d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

_unittests/ut_helpers/test_log_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def test_cube_logs_performance_cube_time(self):
268268
cube = CubeLogsPerformance(dfs, keep_last_date=True)
269269
cube.load()
270270
ct = cube.clone()
271-
self.assertEqual((52, 111), ct.shape)
271+
self.assertEqual((52, 116), ct.shape)
272272

273273
def test_duplicate(self):
274274
df = pandas.DataFrame(

onnx_diagnostic/helpers/log_helper.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1517,6 +1517,7 @@ def __init__(
15171517
"n_node_control_flow",
15181518
"n_node_expand",
15191519
"n_node_function",
1520+
"n_node_gqa",
15201521
"n_node_initializer",
15211522
"n_node_initializer_small",
15221523
"n_node_layer_normalization",
@@ -1727,6 +1728,11 @@ def first_err(df: pandas.DataFrame) -> pandas.Series:
17271728
+ gdf(df, "op_onnx_com.microsoft_DecoderMaskedMultiHeadAttention", 0)
17281729
+ gdf(df, "op_onnx_com.microsoft_SparseAttention", 0),
17291730
),
1731+
n_node_gqa=lambda df: gpreserve(
1732+
df,
1733+
"time_latency_eager",
1734+
gdf(df, "op_onnx_com.microsoft_GroupQueryAttention", 0),
1735+
),
17301736
n_node_layer_normalization=lambda df: gpreserve(
17311737
df,
17321738
"time_latency_eager",

0 commit comments

Comments
 (0)