-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
[ONNX][TOPI] Support select_last_index for argmin/max #8816
Merged
masahi
merged 53 commits into
apache:main
from
AndrewZhaoLuo:aluo/onnx/argmin_and_argmax
Aug 31, 2021
Merged
Changes from 48 commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
53d5ada
support select_last_index for argmin/max
AndrewZhaoLuo 95a6517
reverse conditions which made on accident
AndrewZhaoLuo 5e1f06a
forward args in reduce.py
AndrewZhaoLuo 962e38a
make proper nodes for reduction ops
AndrewZhaoLuo f92089b
remove complicated nested lambdas
AndrewZhaoLuo 9edc8e6
fix lambda capture for conversion
AndrewZhaoLuo 9e4e69a
forward more arguments
AndrewZhaoLuo 5cf4772
forward more args
AndrewZhaoLuo 4f5a662
enable onnx tests
AndrewZhaoLuo 75cb608
wrapping casts to remove ambiguity
7a60353
revert changes extraneous
AndrewZhaoLuo 6a9e82f
correct incorrect attrs being used for ops
AndrewZhaoLuo 0fb5db5
change attributes
AndrewZhaoLuo 55a412d
remove old impl
93173fc
register new attribute node
AndrewZhaoLuo 47b7eed
clean up test
AndrewZhaoLuo e62513b
reformat
AndrewZhaoLuo e9ea784
reformat
AndrewZhaoLuo 587e94a
coolio
AndrewZhaoLuo d048e25
stable comparison
AndrewZhaoLuo 71ab1f3
casts to avoid ambiguity
AndrewZhaoLuo aecf630
casting more
AndrewZhaoLuo 423d092
correct arg passing
AndrewZhaoLuo 2faf06d
support select_last_index for argmin/max
AndrewZhaoLuo edbc0f1
reverse conditions which made on accident
AndrewZhaoLuo ba7f57c
forward args in reduce.py
AndrewZhaoLuo dbf6dc1
make proper nodes for reduction ops
AndrewZhaoLuo fa4dd43
remove complicated nested lambdas
AndrewZhaoLuo 78cc734
fix lambda capture for conversion
AndrewZhaoLuo 0979f4d
forward more arguments
AndrewZhaoLuo 647413e
forward more args
AndrewZhaoLuo f694e58
enable onnx tests
AndrewZhaoLuo 576c56b
wrapping casts to remove ambiguity
67b5762
revert changes extraneous
AndrewZhaoLuo 6d59d1c
correct incorrect attrs being used for ops
AndrewZhaoLuo d7a595f
change attributes
AndrewZhaoLuo 6b645de
remove old impl
0faf5b6
register new attribute node
AndrewZhaoLuo 96d85c2
clean up test
AndrewZhaoLuo 8a6a4bc
reformat
AndrewZhaoLuo 29a2660
reformat
AndrewZhaoLuo 3a2a38d
coolio
AndrewZhaoLuo 296ac2e
stable comparison
AndrewZhaoLuo 12f7213
casts to avoid ambiguity
AndrewZhaoLuo 20cdd36
casting more
AndrewZhaoLuo 49b6322
correct arg passing
AndrewZhaoLuo fcc420e
Merge branch 'aluo/onnx/argmin_and_argmax' of github.com:AndrewZhaoLu…
AndrewZhaoLuo 8f37f89
fix broken input
AndrewZhaoLuo 2db29ca
OneElementReduceAttrs-->ArgReduceAttrs"
4055190
reduce boilerplate
1f56147
change names
d4cbfcc
remove log statement
c5f308b
jostle ci
AndrewZhaoLuo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I prefer
OneElementReduce
->ArgReduce
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.
Done