Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix issues in msc test script
  • Loading branch information
deivanayakisankaralingam authored and deivanayakisankaralingam committed May 5, 2025
commit 10201088398e761d0d7bccae3d151cb57e73b37a
4 changes: 2 additions & 2 deletions tests/python/contrib/test_msc/test_graph_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,8 @@ def forward(self, data):
bz = "bz" if dynamic else 1
expected = {
"inputs": [{"name": "inp_0", "shape": [bz, 10], "dtype": "float32", "layout": ""}],
"outputs": [{"name": "clip", "shape": [bz, 10], "dtype": "float32", "layout": ""}],
"nodes": {"total": 2, "input": 1, "clip": 1},
"outputs": [{"name": "relu6", "shape": [bz, 10], "dtype": "float32", "layout": ""}],
"nodes": {"total": 2, "input": 1, "nn.relu6": 1},
}
if dynamic:
expected["prims"] = {"total": 1, "shape": 1}
Expand Down