-
Notifications
You must be signed in to change notification settings - Fork 398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ReverseSequence op #1579
Add ReverseSequence op #1579
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, it is unfortunate (from a perf & clarity of code perspective) that we need to repeatedly slice & concatenate to accomplish this. However, I don't currently see a way around doing so. I will continue thinking on this but it looks reasonable for now.
b0e3c07
to
a21e2c6
Compare
a21e2c6
to
c6f6cbf
Compare
since we have gather op, I replaced slice op by gather op. After testing, it speed up all test process. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, I agree this is a better approach.
This reverts commit b5eaa15.
Added ReverseSequence op, and requires changes in plaidml/openvino, please see plaidml/openvino#116.