- 27 Nov, 2023 1 commit
-
-
Zakor Gyula authored
-
- 22 Nov, 2023 2 commits
-
-
Zakor Gyula authored
-
Mirza Halilčević authored
Introduce dilations attribute to pooling operators reference implementation.
-
- 17 Nov, 2023 1 commit
-
-
Zakor Gyula authored
-
- 08 Nov, 2023 3 commits
-
-
Zakor Gyula authored
The inaccuracy was caused by ONNX round requires nearest integer rounding for halway (0.5) cases. std::round rounds away from zero, thus giving wrong results with halfway cases. Replaced std::round with std::nearbyint which uses the correct rounding by default.
-
Charlie Lin authored
Fixes an issue that comes up for variable input slice with steps set manually in ONNX to default 1's.
-
Attila Dusnoki authored
-
- 07 Nov, 2023 1 commit
-
-
Zakor Gyula authored
-
- 04 Nov, 2023 1 commit
-
-
Mirza Halilčević authored
Since opset version 18, the Split operator allows splitting into unevenly sized outputs when the split input is not present, and a num_outputs attribute has been introduced.
-
- 03 Nov, 2023 1 commit
-
-
Brian Pickrell authored
-
- 20 Oct, 2023 4 commits
-
-
Zakor Gyula authored
-
turneram authored
Adds workarounds to avoid passing capture ops and scalar literals from quantization as arguments to ck_gemm.
-
nives-vukovic authored
-
music-dino authored
-
- 18 Oct, 2023 1 commit
-
-
Zakor Gyula authored
-
- 17 Oct, 2023 3 commits
-
-
Attila Dusnoki authored
-
Attila Dusnoki authored
-
Charlie Lin authored
-
- 14 Oct, 2023 3 commits
-
-
Lakhinder Walia authored
Add support for the QLinearMatMul onnx operator
-
Lakhinder Walia authored
-
Lakhinder Walia authored
-
- 10 Oct, 2023 1 commit
-
-
Ted Themistokleous authored
-
- 06 Oct, 2023 1 commit
-
-
Lakhinder Walia authored
-
- 04 Oct, 2023 1 commit
-
-
Zakor Gyula authored
-
- 03 Oct, 2023 1 commit
-
-
Charlie Lin authored
Makes ConstantOfShape work with a variable dimensions input
-
- 21 Sep, 2023 1 commit
-
-
Chris Austen authored
* Rectify flipped coordinate_transformation_mode logic in ROIAlign * Handle both opset 10 and 16 versions * Fix version check and clang tidy warning Co-authored-by:Dino Musić <dino.music@htecgroup.com>
-
- 20 Sep, 2023 1 commit
-
-
Chris Austen authored
Add parsing support for value_float, value_floats, value_int, value_ints attributes Disable failing tests Resolves Test failures due to IndexError: _Map_base::at migraphx-benchmark/AMDMIGraphX#76
-
- 29 Aug, 2023 1 commit
-
-
Brian Pickrell authored
Adds support for dynamic input shape in pooling operator along with auto-padding. This combination requires that the padding (and therefore the output shape) can't be computed until runtime.
-
- 21 Aug, 2023 1 commit
-
-
Paul Fultz II authored
-
- 18 Aug, 2023 1 commit
-
-
Charlie Lin authored
Allows slice to work with variable starts, ends, and axes input Outputs a dynamic shape even with a static shape data input when the starts and ends are variable
-
- 08 Aug, 2023 1 commit
-
-
kahmed10 authored
* add quant_dot fusion, clip literal opt
-
- 23 Jul, 2023 1 commit
-
-
Charlie Lin authored
-
- 21 Jul, 2023 1 commit
-
-
Umang Yadav authored
Fixes #1746 BatchNorm only has x as the runtime input parameter for the following equation. All the other parameters are compile-time constants and related operations can be const-folded before quantizing to fp16 to preserve precision.
-
- 13 Jul, 2023 1 commit
-
-
Charlie Lin authored
Renames deconvolution -> convolution_backwards to be more consistent with the literature Note: this is not the cross-correlation operator (which is the adjoint of convolution). This is technically a standard convolution operator combined with an upsampling operator rather than a downsampling operator. Adds unit tests for the padding, strides, dilations, and other op attributes. Throws on auto_pad attribute since it has not been implemented Previously it read the attribute and set it but then did nothing with it Extended for dynamic shapes Does not support using asymmetric padding (padding_L != padding_R) and output_shape with dynamic shapes.
-
- 02 Jul, 2023 1 commit
-
-
Charlie Lin authored
Updates ref version of clip to work with dynamic shapes Encountered in agentmodel
-
- 15 Jun, 2023 1 commit
-
-
Brian Pickrell authored
* fix parse_instancenorm to create broadcast and multibroadcast instructions with two dynamic shape arguments instead of 1. Their make_op() functions don't support dynamic shapes when called with one input. This caused an error when parsing an ONNX 3duunet model * Use add_common_op() to create multibroadcast op. * add verification and parsing test for instance_norm with dynamic input. Parse test doesn't pass. * fix for test; still doesn't pass * another fix for test; still doesn't pass * work in progress, instance_norm_dyn_batch_test works but instance_norm_test doesn't * fix onnx instancenorm tests to match parser changes. Passes all check tests * Updated comments explaining usage of add_common_op() * hand-merged conflicts with develop * fix instance_norm_half_test after merge * add Onnx test instance_norm_dyn_batch_half_test * add shape test cases broadcast_1in_dyn_error and multibroadcast_1in_dyn_error_0
-
- 01 Jun, 2023 1 commit
-
-
Umang Yadav authored
By converting to fp32 : fp16 3d-unet model accuracy comes out the same as FP32 accuracy. By using reduce_sum method on Fp16 : accuracy comes out ~0.9% lower compared to fp32 while keeping entire model in fp16.
-
- 17 Apr, 2023 1 commit
-
-
Charlie Lin authored
Fixes the above behavior This needs to be changed to allow for setting static shapes with map_dyn_input_dims since you cannot also use map_input_dims
-
- 04 Apr, 2023 1 commit
-
-
Charlie Lin authored
Makes the optimals into a std::set<std::size_t> Changes shape object functions to handle the opts change Changes to convolution, flatten, pooling, and convolution in that they no longer calculate the output optimal dimensions. Instead returns empty opts. Will need to change this in the future if we want to support dynamic shapes fully. Many changes to tests and shape calls with respect to the new optimals
-
- 03 Apr, 2023 1 commit
-
-
shivadbhavsar authored
-