- 28 Oct, 2022 5 commits
-
-
Brian Pickrell authored
Refactored reduce_op::normalize_compute_shape() handling of dynamic shapes to set reduced dimensions to {1,1} instead of removing them. Updated shape tests for reduce ops. Spurious change to reduce_mean.cpp reverted. -
Brian Pickrell authored
-
Brian Pickrell authored
Merge branch 'dynamic_reduce' of https://github.com/ROCmSoftwarePlatform/AMDMIGraphX into dynamic_reduce
-
Brian Pickrell authored
dynamic shape support for reduce_XXX operations. One test in ref_ops_test; one test in op_shape_test
-
Brian Pickrell authored
dynamic shape support for reduce_XXX operations. One test in ref_ops_test; one test in op_shape_test
-
- 21 Oct, 2022 1 commit
-
-
Brian Pickrell authored
-
- 19 Oct, 2022 4 commits
-
-
Charlie Lin authored
Refactor dynamic compute - add a compute_output_shape object that implicitly converts to a new dyn_output or shape object - dyn_output object can handle computing the static output shape of an operator given the input arguments shapes change an operator's compute function to argument compute(const dyn_output& dyn_out, std::vector<argument> args) to use dyn_output object Dynamic ref unary functions - Included these changes to have an example of the refactored dynamic compute being used - Changes to unary base class to handle dynamic shapes - Changed elu and leaky_relu to use unary base class and pointwise JIT
-
charlie authored
Merge branch 'refactor_dynamic_compute' of github.com:ROCmSoftwarePlatform/AMDMIGraphX into refactor_dynamic_compute
-
charlie authored
-
Umang Yadav authored
* use find2.0 for the convolution Co-authored-by:
Vasilii Filippov <DrizztDoUrden@users.noreply.github.com> Co-authored-by:
Chris Austen <causten@users.noreply.github.com>
-
- 18 Oct, 2022 1 commit
-
-
Paul Fultz II authored
* Enable non-standard shape * Use perfdb for non xdlops * Fix transpose+broadcast strides Co-authored-by:jungpark-mlir <jungwook.park@amd.com>
-
- 17 Oct, 2022 2 commits
-
-
Charlie Lin authored
-
Umang Yadav authored
hipMemset is causing random failure. hipMemsetAsync is doing the correct synchronization.
-
- 14 Oct, 2022 1 commit
-
-
Charlie Lin authored
Allows for rank 2 tensors into batchnorm. Specifically when spatial dimensions are all 1 and removed
-
- 13 Oct, 2022 2 commits
-
-
Charlie Lin authored
Removes use_dynamic_same_auto_pad Change padding_mode to be used for dynamic padding Move compute_padded_shape to pad_calc.cpp as it will be used in other dynamic padding cases Fix same_lower compute_padded_shape bug and add a test.
-
Charlie Lin authored
Rewrites the TF batch norm like operators to other MIGX operators Removes the code related to batch_norm_inference
-
- 11 Oct, 2022 1 commit
-
-
charlie authored
-
- 10 Oct, 2022 2 commits
- 07 Oct, 2022 2 commits
-
-
Charlie Lin authored
-
Ted Themistokleous authored
Simplified algebraic operations (x*1), x*(-1), x/1, 0+x & x+0, x-0, 0-x, 0*x, x*0, and 0/x operations
-
- 06 Oct, 2022 12 commits
-
-
charlie authored
-
Charlie Lin authored
Co-authored-by:Umang Yadav <29876643+umangyadav@users.noreply.github.com>
-
charlie authored
-
charlie authored
-
charlie authored
-
charlie authored
-
charlie authored
-
charlie authored
-
charlie authored
-
charlie authored
-
charlie authored
-
charlie authored
-
- 04 Oct, 2022 2 commits
-
-
Ted Themistokleous authored
Stream sync changes and associated API level changes
-
Paul Fultz II authored
optimize the softmax operator
-
- 03 Oct, 2022 5 commits
-
-
Umang Yadav authored
Adds two methods for the custom_ops virtual class. bool runs_on_offload_target(), if the custom op runs directly on the gpu then it should be set to true. in this case, custom op expects its parameters to reside in GPU memory and writes output to the GPU memory. If it is set to false then, custom op expects it's parameter to reside on the host and puts back the result into the host memory. output_alias, if output of the custom op is aliasing the input buffer. i.e. interpreting the same input buffer with differnet shape and strides. Update as_vector() in C++ API to handle non-standard shapes. It required exposing element_index to space_index conversion method for the shape class.
-
charlie authored
-
charlie authored
-