- 05 Sep, 2023 1 commit
-
-
Brian Pickrell authored
-
- 28 Aug, 2023 1 commit
-
-
Brian Pickrell authored
-
- 25 Aug, 2023 1 commit
-
-
Brian Pickrell authored
-
- 24 Aug, 2023 2 commits
-
-
Brian Pickrell authored
-
Brian Pickrell authored
-
- 23 Aug, 2023 1 commit
-
-
Brian Pickrell authored
-
- 22 Aug, 2023 1 commit
-
-
Brian Pickrell 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
-
- 17 Aug, 2023 1 commit
-
-
Brian Pickrell authored
-
- 15 Aug, 2023 2 commits
-
-
Brian Pickrell authored
-
Brian Pickrell authored
-
- 14 Aug, 2023 2 commits
-
-
Brian Pickrell authored
-
Brian Pickrell authored
-
- 11 Aug, 2023 2 commits
-
-
Brian Pickrell authored
-
Brian Pickrell authored
Added new random_seed op and some tests. New ref_ops_test rand_uniform_and_seed_test tests random_seed and rand_uniform together as a set.
-
- 07 Aug, 2023 1 commit
-
-
Brian Pickrell authored
-
- 31 Jul, 2023 1 commit
-
-
Brian Pickrell authored
-
- 29 Jul, 2023 1 commit
-
-
Brian Pickrell authored
-
- 27 Jul, 2023 2 commits
-
-
Brian Pickrell authored
-
Brian Pickrell authored
-
- 25 Jul, 2023 1 commit
-
-
Brian Pickrell authored
* Add dynamic input to prefix_scan_op * Added a shape test. The op should return the same dynamic shape as the input. * add 2d shape test for prefix_scan
-
- 24 Jul, 2023 1 commit
-
-
Brian Pickrell authored
-
- 23 Jul, 2023 1 commit
-
-
Charlie Lin authored
-
- 21 Jul, 2023 2 commits
-
-
Brian Pickrell authored
-
Umang Yadav authored
Fixes #1957 Clamping was removed in #1853. Turns out clamping as necessary to handle overflow/underflow cases. during downcasting, if it overflowed then without clamping it returned infinity.
-
- 20 Jul, 2023 1 commit
-
-
Brian Pickrell authored
-
- 17 Jul, 2023 1 commit
-
-
Brian Pickrell authored
Added dynamic input handling to multinomial.hpp. Tests don't pass because it still requires both a random uniform, and dynamic-friendly prefix_scap operations to accept dynamic inputs
-
- 16 Jul, 2023 1 commit
-
-
Umang Yadav authored
-
- 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.
-
- 10 Jul, 2023 1 commit
-
-
Brian Pickrell authored
Changes to the way Pooling operation calculates pooling when there's padding. Old code would clip off any padding values before computing; for instance if an Average pooling window contained 0 1 2 where the 0 is padding, the result was 1.5 instead of 1.0. See Issue 1766
-
- 06 Jul, 2023 3 commits
-
-
Artur Wojcik authored
-
Brian Pickrell authored
-
Brian Pickrell authored
-
- 05 Jul, 2023 2 commits
-
-
Brian Pickrell authored
-
Brian Pickrell authored
-
- 02 Jul, 2023 1 commit
-
-
Charlie Lin authored
Updates ref version of clip to work with dynamic shapes Encountered in agentmodel
-
- 29 Jun, 2023 1 commit
-
-
Brian Pickrell authored
-
- 17 Jun, 2023 1 commit
-
-
Umang Yadav authored
* Fix convert for the NaNs * NaNs can't be compared, use std::isnan() * formatting * formatting * formatting * add extra tests
-
- 16 Jun, 2023 1 commit
-
-
Charlie Lin authored
* initial * Added tests and new functionality * Update optimals handling * Simplify conditionals * Ref test, update docs * Remove comment, suggestion unclear --------- Co-authored-by:Umang Yadav <29876643+umangyadav@users.noreply.github.com>
-
- 03 May, 2023 1 commit
-
-
Charlie Lin authored
Relies on Removed split_single_dyn_dim compile flag #1711 Exposes dynamic_dimension as a opaque object with dynamic_dimensions and optimals Exposes ONNX dyn_input_dims and default_dyn_dim to run with dynamic batch Updates api.py to be able to create objects from aggregate initialization (used for dynamic_dimension) Uses offload copy for now
-