Skip to content

Commit

Permalink
Merge branch 'main' into string_concat_operator
Browse files Browse the repository at this point in the history
  • Loading branch information
adityagoel4512 committed Jun 23, 2023
2 parents c96a8cc + e987130 commit 0b53e0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -22943,7 +22943,7 @@ This version of the operator has been available since version 19 of the default
<dt><tt>T1</tt> : tensor(int8), tensor(uint8), tensor(int32), tensor(float8e4m3fn), tensor(float8e4m3fnuz), tensor(float8e5m2), tensor(float8e5m2fnuz)</dt>
<dd>Constrain 'x_zero_point' and 'x' to 8-bit integer or float, or /32-bit integer tensor.</dd>
<dt><tt>T2</tt> : tensor(float), tensor(float16), tensor(bfloat16)</dt>
<dd>'y_scale' determines the output type.</dd>
<dd>'x_scale' determines the output type.</dd>
</dl>

### <a name="Equal-19"></a>**Equal-19**</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/Operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -6960,7 +6960,7 @@ Other versions of this operator: <a href="Changelog.md#DequantizeLinear-10">10</
<dt><tt>T1</tt> : tensor(int8), tensor(uint8), tensor(int32), tensor(float8e4m3fn), tensor(float8e4m3fnuz), tensor(float8e5m2), tensor(float8e5m2fnuz)</dt>
<dd>Constrain 'x_zero_point' and 'x' to 8-bit integer or float, or /32-bit integer tensor.</dd>
<dt><tt>T2</tt> : tensor(float), tensor(float16), tensor(bfloat16)</dt>
<dd>'y_scale' determines the output type.</dd>
<dd>'x_scale' determines the output type.</dd>
</dl>


Expand Down
2 changes: 1 addition & 1 deletion onnx/defs/quantization/defs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ ONNX_OPERATOR_SET_SCHEMA(
.TypeConstraint(
"T2",
{"tensor(float)", "tensor(float16)", "tensor(bfloat16)"},
"'y_scale' determines the output type.")
"'x_scale' determines the output type.")
.SetDoc(DequantizeLinear_ver19_doc)
.TypeAndShapeInferenceFunction([](ONNX_NAMESPACE::InferenceContext& ctx) {
auto y_type = ctx.getOutputType(0);
Expand Down

0 comments on commit 0b53e0e

Please sign in to comment.