Skip to content

Commit

Permalink
don’t check torch.min in the verifier (#3531)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #3531

addressing: #3517

Reviewed By: larryliu0820

Differential Revision: D57056110

fbshipit-source-id: a0e82442e87ed7aecab39e8f1b04bed356fb9804
  • Loading branch information
manuelcandales authored and facebook-github-bot committed May 7, 2024
1 parent a82db7c commit 6c0c675
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exir/verification/verifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def check_valid_op(self, op):
torch.ops.aten._upsample_bilinear2d_aa.default,
torch.ops.aten.quantize_per_tensor.default,
torch.ops.aten.dequantize.self,
torch.ops.aten.max.default,
torch.ops.aten.max.default, # TODO(T188268054)
torch.ops.aten.min.default, # TODO(T188268054)
torch.ops.aten.full_like.default, # TODO(T183507359)
):
return
Expand Down

0 comments on commit 6c0c675

Please sign in to comment.