AMDMIGraphX
AMDMIGraphX copied to clipboard
AMD's graph optimization engine.
Currently if an onnx file is empty (i.e., contains 0 bytes), MIGraphX will throw a segfault. This is not a useful message to the user. We should try to have...
Get the MIGraphX EP up to parity with the ROCm EP so we can accelerate additional ops via MIGraphX - [ ] Determine deficiencies between EPs - [ ] Make...
This issue is for adding functionality for switch to hipblaslt from rocblas.
In https://github.com/ROCm/AMDMIGraphX/pull/2973, uint8 type has been enabled for MaxPool, however following test cases are failing: - AveragePool with padding and uint8/int8 type - AveragePool with stride that is not default...
Move our the building of Onnxrt from all our CI and perform this action nightly/when there's an update we pull in for onnxrt Potentially do the same for unit tests....
Can this be done by leveraging the onnxruntime work we already have as a back end? As a preliminary step, learn to add a Cuda back end, then change it...
Update test and add dlm pieces - [x] DLM piece - [x] Add change to test
This is a very common ONNX operator. ORT falls back to CPU when encountering this node. The code is at: https://github.com/microsoft/onnxruntime/blob/ee603ee3265dbf6eac112baf273b6b69bf696085/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc#L1022-L1029 This happens when executing LLama v2, from: https://github.com/microsoft/onnxruntime-inference-examples/blob/main/python/models/llama/LLaMA-2 E2E...