Skip to content

Commit c2d9876

Browse files
committed
add sample input for new core op elu.out
I have no idea what this file actually does, but it seems like we are supposed to have this? ghstack-source-id: 9562421 ghstack-comment-id: 2751750828 Pull Request resolved: #9577
1 parent a0992d5 commit c2d9876

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
@@ -424,6 +424,15 @@
424424
],
425425
"returns": [Return(ArgType.Tensor)],
426426
},
427+
"elu.default": { # (Tensor self, Scalar alpha=1, Scalar scale=1, Scalar input_scale=1, *, Tensor(a!) out) -> Tensor(a!)
428+
"args": [
429+
InArg(ArgType.Tensor),
430+
InArg(ArgType.Scalar),
431+
InArg(ArgType.Scalar),
432+
InArg(ArgType.Scalar),
433+
],
434+
"returns": [Return(ArgType.Tensor)],
435+
},
427436
"embedding.default": { # (Tensor weight, Tensor indices, SymInt padding_idx=-1, bool scale_grad_by_freq=False, bool sparse=False) -> Tensor
428437
"args": [
429438
InArg(ArgType.Tensor),

0 commit comments

Comments
 (0)