- 31 Mar, 2023 1 commit
-
-
Charlie Lin authored
Adds a new GPU compiler pass split_single_dyn_dim that handles when one input parameter has a single non-fixed dynamic_dimension. commonly occurs for dynamic batch or BERT sequence length Splits the dynamic shape into several submodules will static input parameters to handle all of the cases in the dynamic_dimension range. Essentially does what I manually did for the select_module verify tests Adds a compile option split_single_dyn_dim that toggles the pass on/off. Defaults to false. Updates verify_program.hpp and run_verify.cpp to allow for the tests to change the compile_options
-
- 30 Mar, 2023 1 commit
-
-
Paul Fultz II authored
* Add hiprtc driver
-
- 29 Mar, 2023 2 commits
-
-
Paul Fultz II authored
-
Pavle Jacovic authored
-
- 28 Mar, 2023 2 commits
-
-
Pavle Jacovic authored
-
Umang Yadav authored
* Remove version from check_context and bump program version
-
- 27 Mar, 2023 1 commit
-
-
Manupa Karunaratne authored
* [MLIR] add dot offloads with manual tuning support * This commit adds dot + pointwise fusion support along with manual tuning using rocMLIR.
-
- 26 Mar, 2023 1 commit
-
-
Chris Austen authored
-
- 25 Mar, 2023 1 commit
-
-
Umang Yadav authored
Co-authored-by:Chris Austen <causten@users.noreply.github.com>
-
- 24 Mar, 2023 1 commit
-
-
Ted Themistokleous authored
Useful to get more insight into Onnxruntime. Allows us to reuse the accuracy checker code while also allowing us to capture Execution Provider output with the --ort_run and --ort_logging flags Also added the --target flag as well to allow us to force using either a specific target for the accuracy checking. Originally this was defaulting to the GPU. This now allows us to use ref, fpga, etc to quickly change targets.
-
- 22 Mar, 2023 1 commit
-
-
Umang Yadav authored
prevent dynamically loading the target library that is not compiled with the same version of MIGraphX core lib.
-
- 21 Mar, 2023 2 commits
-
-
Charlie Lin authored
Refactor to have select_module use output parameters Disable select_module verify tests on cpu
-
Umang Yadav authored
Recent changes #1608 removed migraphx_all_target lib from driver and that led to missing compile time definitions. Missing compile definitions led to change of default target in driver.
-
- 18 Mar, 2023 1 commit
-
-
Umang Yadav authored
Fixes #1595
-
- 17 Mar, 2023 2 commits
-
-
Paul Fultz II authored
-
Paul Fultz II authored
This is the original testcase that sparked the error with missing proper const folding. Pushing changes up to this branch and closing out the PR #1622
-
- 15 Mar, 2023 1 commit
-
-
Umang Yadav authored
-
- 14 Mar, 2023 1 commit
-
-
github-actions[bot] authored
-
- 13 Mar, 2023 3 commits
-
-
Umang Yadav authored
* use GITHUB_STATE
-
Umang Yadav authored
-
Manupa Karunaratne authored
* [MLIR] Adds a runtime switch to trigger MLIR
-
- 10 Mar, 2023 3 commits
-
-
Paul Fultz II authored
-
Ted Themistokleous authored
-
Paul Fultz II authored
-
- 09 Mar, 2023 2 commits
-
-
Ted Themistokleous authored
* Update github action for onnxruntime sync to open autoPR
-
Akash Patel authored
fallback to msgpack for older msgpack versions
-
- 07 Mar, 2023 1 commit
-
-
Umang Yadav authored
* NMS improvements
-
- 06 Mar, 2023 1 commit
-
-
Umang Yadav authored
-
- 04 Mar, 2023 2 commits
-
-
Umang Yadav authored
resolve half info messages while building
-
Chris Austen authored
github action file change
-
- 03 Mar, 2023 1 commit
-
-
Chris Austen authored
-
- 02 Mar, 2023 1 commit
-
-
Umang Yadav authored
-
- 01 Mar, 2023 2 commits
-
-
Chris Austen authored
Enable multiple orgs for testing
-
Charlie Lin authored
Add additional documentation to explain the passes.
-
- 28 Feb, 2023 1 commit
-
-
Charlie Lin authored
Creates the select_module operator that selects one of the submodules passed to it to run based on the submodule parameters. The submodule is selected by having the exact same static shapes for the arguments to select_module as the parameters in the submodule
-
- 23 Feb, 2023 1 commit
-
-
shivadbhavsar authored
-
- 22 Feb, 2023 2 commits
-
-
Chris Austen authored
* Add a Changelog to the repository
-
Chris Austen authored
-
- 17 Feb, 2023 1 commit
-
-
Chris Austen authored
Enable python 3.10 bindings
-
- 16 Feb, 2023 1 commit
-
-
Paul Fultz II authored
Avoids double global loads. Strided loops are unrolled which lets store results in array which compiler will use registers for since the index access is constant. Updated to handle large reductions so which results with a better stable diffusion result
-