-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Op kernel type reduction infrastructure. #6466
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
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
6a2a7b1
Update Cast to limit implemented types.
edgchen1 44a65ca
Remove special case handling of string and float16.
edgchen1 e93577e
Add Mp11 submodule.
edgchen1 79caf38
Add Mp11 to cgmanifest.json.
edgchen1 01138b5
Fix generate_submodule_cgmanifest.py Windows issues.
edgchen1 987038d
Update CMake files to use Mp11 submodule.
edgchen1 02d754a
Revert "Fix generate_submodule_cgmanifest.py Windows issues."
edgchen1 a683f09
Add MLFloat(float) ctor, change from union to struct.
edgchen1 541ecb7
Move MLTypeCallDispatcher2 into data_types_internal.h, clean up.
edgchen1 9f21483
Initial implemented type utils.
edgchen1 47bd1c5
Move type_list.h.
edgchen1 ea2bceb
Improve op arg type specification, add global override list.
edgchen1 f781a85
Clean up, renaming.
edgchen1 9ccb5e9
Merge remote-tracking branch 'origin/master' into edgchen1/type_reduc…
edgchen1 c462e4e
Revert unintentional changes from reduced op build.
edgchen1 23ff415
Fix warning from dispatcher with empty Types, some clean up.
edgchen1 b0532b6
Add kernel type constraints helper supporting type lists.
edgchen1 0a38576
Add location for specifying type overrides.
edgchen1 d608422
Update IsInf.
edgchen1 1564270
Update documentation in op_kernel_type_control.h.
edgchen1 a700c84
Clean up.
edgchen1 0610765
Merge remote-tracking branch 'origin/master' into edgchen1/type_reduc…
edgchen1 882857a
Fix include order.
edgchen1 39135b6
Fix CMake issue.
edgchen1 e3d1edb
Address PR comments.
edgchen1 5a02162
Try to fix build.
edgchen1 a2f9529
Rename type to types.
edgchen1 d708c24
Fix build issues.
edgchen1 af07268
Try to fix Windows build.
edgchen1 8273e1f
Add .inc file in CMake.
edgchen1 7ea56bd
Add Op domain to type control infrastructure.
edgchen1 2b73b13
Add support for providers when specifying supported types.
edgchen1 0d55a1b
Merge remote-tracking branch 'origin/master' into edgchen1/type_reduc…
edgchen1 be93033
Fix GPU build issue.
edgchen1 591e9e2
More build fixes.
edgchen1 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
|
|
||
| #pragma once | ||
|
|
||
| namespace onnxruntime { | ||
|
|
||
| // this type represents a compile-time list of types | ||
| template <typename... T> | ||
| struct TypeList {}; | ||
|
|
||
| } |
This file contains hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.