Skip to content

Commit 432bfe3

Browse files
manuelcandalesfacebook-github-bot
authored andcommitted
Add sample input for pixel_shuffle (#364)
Summary: Pull Request resolved: #364 Reviewed By: digantdesai Differential Revision: D49290179 fbshipit-source-id: cb651a0ff37e09f68c64c620e41d6741f07fbcff
1 parent 1f5e54a commit 432bfe3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

exir/dialects/edge/op/sample_input.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -930,6 +930,15 @@
930930
Return(ArgType.Tensor),
931931
],
932932
},
933+
"pixel_shuffle.default": { # (Tensor self, int upscale_factor) -> Tensor
934+
"args": [
935+
InArg(ArgType.Tensor, size=[2, 4, 1, 3]),
936+
InArg(ArgType.Param, value=2),
937+
],
938+
"returns": [
939+
Return(ArgType.Tensor, size=[2, 1, 2, 6]),
940+
],
941+
},
933942
"pow.Tensor_Scalar": { # (Tensor self, Scalar exponent) -> Tensor
934943
"args": [
935944
InArg(ArgType.Tensor),

0 commit comments

Comments
 (0)