Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/srt/ascend/test_ascend_piecewise_graph_prefill.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def setUpClass(cls):
128,
"--enable-piecewise-cuda-graph",
"--piecewise-cuda-graph-tokens",
]
+ TOKENS_TO_CAPTURE,
*TOKENS_TO_CAPTURE,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This change correctly fixes the argument passing. A similar issue exists in the TestPiecewiseGraphPrefillBenchmark class on line 82, where TOKENS_TO_CAPTURE also needs to be unpacked. Please apply the same fix there to ensure the benchmark test runs correctly.

Suggested change for line 82:

                *TOKENS_TO_CAPTURE,

],
)

@classmethod
Expand Down
Loading