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
Original file line number Diff line number Diff line change
Expand Up @@ -821,6 +821,11 @@ def _where_input_wrangler(
matcher=lambda sample: not (sample.args[0][0].dtype == torch.bool),
reason="this Aten overload only support tensor(bool) as args",
),
skip(
"matmul",
matcher=lambda sample: torch.numel(sample.input) == 0,
Copy link
Contributor

Choose a reason for hiding this comment

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

what is relationship of sample.input and sample.args btw?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

input is the first input. args[...] starts from the second

reason="values of matmul of [m, 0] and [0, n] matrices are undefined",
),
skip(
"min", # aten_mean
matcher=lambda sample: len(sample.args) > 0,
Expand Down