Skip to content

Commit

Permalink
update depthwise conv2d ut (PaddlePaddle#821)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaozhixin authored Jun 21, 2022
1 parent 57d7999 commit 04be283
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,5 +150,13 @@ def set_op_attrs(self):
self.attrs['output_size'] = [12, 12]


class TestCase11(TestBase):

# Depthwise conv2d transpose
def set_op_attrs(self):
super().set_op_attrs()
self.attrs['groups'] = 3


if __name__ == "__main__":
unittest.main()
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def set_op_attrs(self):


class TestCase5(TestBase):

# Depthwise conv2d
def set_op_attrs(self):
super().set_op_attrs()
self.attrs['groups'] = 3
Expand Down

0 comments on commit 04be283

Please sign in to comment.