Conversation
Contributor
Author
|
Error message is like below: |
Member
|
The CI fails. Could you please fix it? |
jywu-msft
approved these changes
Feb 25, 2021
yufenglee
approved these changes
Feb 25, 2021
oliviajain
pushed a commit
that referenced
this pull request
Feb 25, 2021
…r quantization calibration (#6788) * Make keepdims to its default value when adding ReduceMin/ReduceMax * Fix bug for adding ReduceMin/ReduceMax with keepdims=1
oliviajain
added a commit
that referenced
this pull request
Feb 25, 2021
Fix longformer parity and perf regression (#6760) … Adding fp16 support for Einsum Cuda kernel (#6775) … Update DirectML 1.4.1 to 1.4.2 for ORT 1.7 (#6780) … Fix regression in constant folding optimizer (#6795) Update transformers benchmark for transformers 4.3.* and ORT 1.7 (#6796) … Make keepdims to its default value when adding ReduceMin/ReduceMax fo (#6788)… … fix issues caused by quantize/calibrate changes (#6802) 6735 and 6728 already in release branch Co-authored-by: Tianlei Wu <tlwu@microsoft.com> Co-authored-by: Ye Wang <52801275+wangyems@users.noreply.github.com> Co-authored-by: Ori Levari <orlevari@microsoft.com> Co-authored-by: Hariharan Seshadri <shariharan91@gmail.com> Co-authored-by: Chi Lo <54722500+chilo-ms@users.noreply.github.com> Co-authored-by: stevenlix <38092805+stevenlix@users.noreply.github.com>
pranav-prakash
added a commit
to ucb-bar/onnxruntime-riscv
that referenced
this pull request
Apr 2, 2021
Also backport upstream: microsoft/onnxruntime#6788 microsoft/onnxruntime#6893 for reduce dims
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
Previously we set keepdims to 0 which could cause error when some input tensor is 0.
Change to keepdims's default value.
Motivation and Context