-
Notifications
You must be signed in to change notification settings - Fork 3.5k
[MIGraphX EP] Syncing AMD changes upstream #25583
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
50 commits
Select commit
Hold shift + click to select a range
a20104c
Add in BF16 datatype and quantization support to MIGraphX EP
apwojcik 5506dfa
Fixing corrupted flags issue DML and MGX
urpetkov-amd fa11154
Check migraphx_onnx_options_set_external_data_path exists
apwojcik 131512d
Use #ifdef instead of #if
apwojcik 8e15865
Simlify MIGraphX EP CMake
apwojcik e70b8dc
Use SHARED lib not MODULE for MIGraphX EP
apwojcik d74ecba
Use integer type equivalent to architecture to represent memory addre…
apwojcik 5bb4cee
Declaration of 'param_shapes' hides previous local declaration
apwojcik 9820413
Add inline to header file function definitions
apwojcik e7ce7ff
use string_view
apwojcik f8450f1
Use std::string_view for literals
apwojcik 2314625
Use MIGraphX ONNXRT DLL location to search for MIGX and HIP runtime DLLs
apwojcik 303129c
Reduce number of log messages
apwojcik 7edd17b
implement cpplint suggestions
apwojcik bc1ca7a
Use OrtDevice::DeviceId instead of int
apwojcik c87168e
Use int instead of 'bool' for ONNXRT C interface
apwojcik 8c0d09d
allocate memory for an option value
apwojcik e4d1c3e
Support for saving and loading MXR files automaticaly
apwojcik 48989b8
The C# interface for MIGraphX execution provider
apwojcik 453ebf5
Trim the output names of non-digits
apwojcik 71f2729
Use member variables for EP configuration instead of the info member …
apwojcik 7d8e4f2
Bundle MIGraphX and HIP runtime binaries in C# NuGet and Python wheel
apwojcik 9686e40
Add Attention and SkipLayerNormalization Contrib op support (#100)
TedThemistokleous 6589ef9
Remove redundant initialization of execution provider
apwojcik e614347
Remove redundant allocator static method
apwojcik b2bf6ae
MIGraphX cherry-picks for WCR
apwojcik 71fc0b9
Remove ROCm EP dependencies after drop
apwojcik 64eff87
changed back the type to bool
apwojcik 0ade80d
Merge branch 'main' into amd_migx_ep_sync
apwojcik e6e5e54
do not modify provider ABI
apwojcik ed86438
use std::string_view variant to reduce binary size
apwojcik 90f1ea4
review comment: use std::string directly
apwojcik b2bef03
review comment: fix security bug in StrDup(wchar_t)
apwojcik b46d46d
review comment: CANN update
apwojcik e06f1ee
review comment: remove unused dependencies
apwojcik d823753
review comment: fix source code formatting
apwojcik 27e60f8
review comment: fix security bug
apwojcik fcd9198
fix Python wheel name for MIGraphX
apwojcik 4b2acf1
Revert "The C# interface for MIGraphX execution provider"
apwojcik 06ebb42
Merge branch 'main' into amd_migx_ep_sync
apwojcik 20ed3a7
Merge branch 'main' into amd_migx_ep_sync
apwojcik ef8c968
Use auto Ep version from 'main' branch
apwojcik 781fa34
Create C# NuGet package for MIGraphX
apwojcik cd65f69
Merge branch 'main' into amd_migx_ep_sync
apwojcik 42441ff
fix pybind compilation after merging 'main'
apwojcik 7e38f71
do not alter OrtMIGraphXProvierOptions
apwojcik 8be40b0
remove nested MIGraphXExecutionProviderInfo
apwojcik b9d7e26
lintrunner
apwojcik 481c854
disable C4065 warning for the switch statement
apwojcik 1ac92bc
Update onnxruntime/python/onnxruntime_pybind_ortvalue.cc
apwojcik 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| # build, distribute, and bins (+ python proto bindings) | ||
| build.*/ | ||
| build | ||
| build_*/ | ||
| .build_debug/* | ||
|
|
||
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
Oops, something went wrong.
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.