Skip to content

Commit 9f58451

Browse files
Add missing validation steps for several ops (#820)
* Add missing validation steps for several ops A follow-on to #706 and the [audit](https://docs.google.com/spreadsheets/d/1S5-bMWN1hDrkPGiHFCyX-OjcbEBj1a-aWNdtTQ2dcGg) by @huningxin that adds validation steps to several ops identified for edge cases in the Chromium prototype implementation. This touches the following ops: - convTranspose2d - outputSizes items must be valid dimensions - lstm - steps must be greater than 0 - pool2d - windowDimensions must be greater than 0 - pool2d - outputSizes items must be valid dimensions - pool2d - specified output sizes must be floor() or ceil() of calculated output sizes - split - splits (if a number) must be greater than 0 Fixes #818 as well. * Review feedback
1 parent fccaccb commit 9f58451

File tree

1 file changed

+26
-14
lines changed

1 file changed

+26
-14
lines changed

index.bs

+26-14
Original file line numberDiff line numberDiff line change
@@ -2658,15 +2658,17 @@ partial dictionary MLOpSupportLimits {
26582658
1. If |options|.{{MLConv2dOptions/bias}} [=map/exists=]:
26592659
1. If its [=MLOperand/shape=] is not [=list/equal=] to « |outputChannels| », then [=exception/throw=] a {{TypeError}}.
26602660
1. If its [=MLOperand/dataType=] is not one of its [=/allowed data types=] (according to [this table](#constraints-conv2d)), then [=exception/throw=] a {{TypeError}}.
2661-
1. Let |outputSizes| be the result of [=MLGraphBuilder/calculating conv2d output sizes=] given |inputHeight|, |inputWidth|, |filterHeight|, |filterWidth|, |options|.{{MLConv2dOptions/padding}}, |options|.{{MLConv2dOptions/strides}}, and |options|.{{MLConv2dOptions/dilations}}.
2661+
1. Let « |outputHeight|, |outputWidth| » be the result of [=MLGraphBuilder/calculating conv2d output sizes=] given |inputHeight|, |inputWidth|, |filterHeight|, |filterWidth|, |options|.{{MLConv2dOptions/padding}}, |options|.{{MLConv2dOptions/strides}}, and |options|.{{MLConv2dOptions/dilations}}.
2662+
1. Set |outputHeight| to floor( |outputHeight| ).
2663+
1. Set |outputWidth| to floor( |outputWidth| ).
2664+
1. If either |outputHeight| or |outputWidth| is not a [=valid dimension=], then [=exception/throw=] a {{TypeError}}.
26622665
1. Switch on |options|.{{MLConv2dOptions/inputLayout}}:
26632666
<dl class=switch>
26642667
: {{MLInputOperandLayout/"nchw"}}
2665-
:: Let |outputShape| be « |batches|, |outputChannels|, floor( |outputSizes|[0] ), floor( |outputSizes|[1] ) ».
2668+
:: Let |outputShape| be « |batches|, |outputChannels|, |outputHeight|, |outputWidth| ».
26662669
: {{MLInputOperandLayout/"nhwc"}}
2667-
:: Let |outputShape| be « |batches|, floor( |outputSizes|[0] ), floor( |outputSizes|[1] ), |outputChannels| ».
2670+
:: Let |outputShape| be « |batches|, |outputHeight|, |outputWidth|, |outputChannels| ».
26682671
</dl>
2669-
1. If any [=list/item=] in |outputShape| is not a [=valid dimension=], then [=exception/throw=] a {{TypeError}}.
26702672
1. Let |desc| be the result of [=creating an MLOperandDescriptor=] given |input|'s [=MLOperand/dataType=] and |outputShape|.
26712673
1. *Make graph connections:*
26722674
1. Let |output| be the result of [=creating an MLOperand=] given [=this=] and |desc|.
@@ -2823,10 +2825,10 @@ partial dictionary MLOpSupportLimits {
28232825

28242826
<details open algorithm>
28252827
<summary>
2826-
To <dfn for=MLGraphBuilder>calculate convtranspose output size</dfn> given unsigned integers |inputSize|, |filterSize|, |beginningPadding|, |endingPadding|, |stride|, |dilation|, and |outputPadding|, perform these steps. They return a number.
2828+
To <dfn for=MLGraphBuilder>calculate convtranspose output size</dfn> given unsigned integers |inputSize|, |filterSize|, |beginningPadding|, |endingPadding|, |stride|, and |dilation|, perform these steps. They return a number.
28272829
</summary>
28282830
1. Let |effectiveFilterSize| be ( |filterSize| - 1 ) * |dilation| + 1.
2829-
1. Let |outputSize| be ( |inputSize| - 1 ) * |stride| + |effectiveFilterSize| - |beginningPadding| - |endingPadding| + |outputPadding|.
2831+
1. Let |outputSize| be ( |inputSize| - 1 ) * |stride| + |effectiveFilterSize| - |beginningPadding| - |endingPadding|.
28302832
1. Return |outputSize|.
28312833
</details>
28322834

@@ -2876,22 +2878,27 @@ partial dictionary MLOpSupportLimits {
28762878
</dl>
28772879
1. If |inputChannels| is not equal to |filterInputChannels|, then [=exception/throw=] a {{TypeError}}.
28782880
1. Let |outputChannels| be |filterOutputChannels| * |options|.{{MLConvTranspose2dOptions/groups}}.
2881+
1. If |outputChannels| is not a [=valid dimension=], then [=exception/throw=] a {{TypeError}}.
28792882
1. If |options|.{{MLConvTranspose2dOptions/bias}} [=map/exists=]:
28802883
1. If its [=MLOperand/shape=] is not [=list/equal=] to « |outputChannels| », then [=exception/throw=] a {{TypeError}}.
28812884
1. If its [=MLOperand/dataType=] is not one of its [=/allowed data types=] (according to [this table](#constraints-convTranspose2d)), then [=exception/throw=] a {{TypeError}}.
2885+
1. Let |calculatedOutputHeight| be the result of [=MLGraphBuilder/calculating convtranspose output size=] given |inputHeight|, |filterHeight|, |padding|[0], |padding|[1], |strides|[0] and |dilations|[0].
2886+
1. Let |calculatedOutputWidth| be the result of [=MLGraphBuilder/calculating convtranspose output size=] given |inputWidth|, |filterWidth|, |padding|[2], |padding|[3], |strides|[1] and |dilations|[1].
28822887
1. If |options|.{{MLConvTranspose2dOptions/outputSizes}} [=map/exists=], then:
28832888
1. Let « |outputHeight|, |outputWidth| » be |options|.{{MLConvTranspose2dOptions/outputSizes}}.
2889+
1. If |outputHeight| is less than |calculatedOutputHeight|, or |outputHeight| is greater than or equal to |calculatedOutputHeight| + |strides|[0], then [=exception/throw=] a {{TypeError}}.
2890+
1. If |outputWidth| is less than |calculatedOutputWidth|, or |outputWidth| is greater than or equal to |calculatedOutputWidth| + |strides|[1], then [=exception/throw=] a {{TypeError}}.
28842891
1. Otherwise:
2885-
1. Let |outputHeight| be the result of [=MLGraphBuilder/calculating convtranspose output size=] given |inputHeight|, |filterHeight|, |padding|[0], |padding|[1], |strides|[0], |dilations|[0], and |outputPadding|[0].
2886-
1. Let |outputWidth| be the result of [=MLGraphBuilder/calculating convtranspose output size=] given |inputWidth|, |filterWidth|, |padding|[2], |padding|[3], |strides|[1], |dilations|[1] and |outputPadding|[1].
2892+
1. Let |outputHeight| be |calculatedOutputHeight| + |options|.{{MLConvTranspose2dOptions/outputPadding}}[0].
2893+
1. Let |outputWidth| be |calculatedOutputWidth| + |options|.{{MLConvTranspose2dOptions/outputPadding}}[1].
2894+
1. If either |outputHeight| or |outputWidth| is not a [=valid dimension=], then [=exception/throw=] a {{TypeError}}.
28872895
1. Switch on |options|.{{MLConvTranspose2dOptions/inputLayout}}:
28882896
<dl class=switch>
28892897
: {{MLInputOperandLayout/"nchw"}}
28902898
:: Let |outputShape| be « |batches|, |outputChannels|, floor( |outputHeight| ), floor( |outputWidth| ) ».
28912899
: {{MLInputOperandLayout/"nhwc"}}
28922900
:: Let |outputShape| be « |batches|, floor( |outputHeight| ), floor( |outputWidth| ), |outputChannels| ».
28932901
</dl>
2894-
1. If any [=list/item=] in |outputShape| is not a [=valid dimension=], then [=exception/throw=] a {{TypeError}}.
28952902
1. Let |desc| be the result of [=creating an MLOperandDescriptor=] given |input|'s [=MLOperand/dataType=] and |outputShape|.
28962903
1. *Make graph connections:*
28972904
1. Let |output| be the result of [=creating an MLOperand=] given [=this=] and |desc|.
@@ -5602,6 +5609,7 @@ partial dictionary MLOpSupportLimits {
56025609
1. Let |numDirections| be 2 if |options|.{{MLLstmOptions/direction}} is {{MLRecurrentNetworkDirection/"both"}}, or 1 otherwise.
56035610
1. If the [=MLOperand/dataType=] of any of |input|, |weight| or |recurrentWeight| is not one of its [=/allowed data types=] (according to [this table](#constraints-lstm)), then [=exception/throw=] a {{TypeError}}.
56045611
1. If the [=MLOperand/rank=] of any of |input|, |weight| or |recurrentWeight| is not its [=/allowed rank=], then [=exception/throw=] a {{TypeError}}.
5612+
1. If |steps| is 0, then [=exception/throw=] a {{TypeError}}.
56055613
1. If |input|'s [=MLOperand/shape=][0] is not equal to |steps|, then [=exception/throw=] a {{TypeError}}.
56065614
1. Let |batchSize| be |input|'s [=MLOperand/shape=][1].
56075615
1. Let |inputSize| be |input|'s [=MLOperand/shape=][2].
@@ -6547,6 +6555,7 @@ partial dictionary MLOpSupportLimits {
65476555
</dl>
65486556
1. If |options|.{{MLPool2dOptions/windowDimensions}} does not [=map/exist=], set |options|.{{MLPool2dOptions/windowDimensions}} to « |inputHeight|, |inputWidth| ».
65496557
1. If |options|.{{MLPool2dOptions/windowDimensions}}'s [=list/size=] is not 2, then [=exception/throw=] a {{TypeError}}.
6558+
1. If any [=list/item=] in |options|.{{MLPool2dOptions/windowDimensions}} is equal to 0, then [=exception/throw=] a {{TypeError}}.
65506559
1. If |options|.{{MLPool2dOptions/outputSizes}} [=map/exists=], or if |options|.{{MLPool2dOptions/padding}} does not [=map/exist=], set |options|.{{MLPool2dOptions/padding}} to the [=/list=] « 0, 0, 0, 0 ».
65516560
1. If |options|.{{MLPool2dOptions/padding}}'s [=list/size=] is not 4, then [=exception/throw=] a {{TypeError}}.
65526561
1. If |options|.{{MLPool2dOptions/strides}} does not [=map/exist=], set |options|.{{MLPool2dOptions/strides}} to the [=/list=] « 1, 1 ».
@@ -6560,11 +6569,13 @@ partial dictionary MLOpSupportLimits {
65606569
1. If any value in |options|.{{MLPool2dOptions/dilations}} is not greater than 0, then [=exception/throw=] a {{TypeError}}.
65616570
1. Let |desc| be a copy of |input|.{{MLOperand/[[descriptor]]}}.
65626571
1. *Calculate the output shape:*
6563-
1. If |options|.{{MLPool2dOptions/outputSizes}} [=map/exists=], then let « |outputHeight|, |outputWidth| » be |options|.{{MLPool2dOptions/outputSizes}}.
6572+
1. Let « |windowHeight|, |windowWidth| » be |options|.{{MLPool2dOptions/windowDimensions}}.
6573+
1. Let « |calculatedOutputHeight|, |calculatedOutputWidth| » be the result of [=MLGraphBuilder/calculating conv2d output sizes=] given |inputHeight|, |inputWidth|, |windowHeight|, |windowWidth|, |options|.{{MLPool2dOptions/padding}}, |options|.{{MLPool2dOptions/strides}}, and |options|.{{MLPool2dOptions/dilations}}.
6574+
1. If |options|.{{MLPool2dOptions/outputSizes}} [=map/exists=], then:
6575+
1. Let « |outputHeight|, |outputWidth| » be |options|.{{MLPool2dOptions/outputSizes}}.
6576+
1. If neither |outputHeight| equals floor( |calculatedOutputHeight| ) and |outputWidth| equals floor( |calculatedOutputWidth| ), nor |outputHeight| equals ceil( |calculatedOutputHeight| ) and |outputWidth| equals ceil( |calculatedOutputWidth| ), then [=exception/throw=] a {{TypeError}}.
65646577
1. Otherwise:
6565-
1. Let « |windowHeight|, |windowWidth| » be |options|.{{MLPool2dOptions/windowDimensions}}.
6566-
1. Let |outputSizes| be the result of [=MLGraphBuilder/calculating conv2d output sizes=] given |inputHeight|, |inputWidth|, |windowHeight|, |windowWidth|, |options|.{{MLPool2dOptions/padding}}, |options|.{{MLPool2dOptions/strides}}, and |options|.{{MLPool2dOptions/dilations}}.
6567-
1. Let « |outputHeight|, |outputWidth| » be |outputSizes|.
6578+
1. Let « |outputHeight|, |outputWidth| » be « |calculatedOutputHeight|, |calculatedOutputWidth| ».
65686579
1. Switch on |options|.{{MLPool2dOptions/roundingType}}:
65696580
<dl class=switch>
65706581
: {{MLRoundingType/"floor"}}
@@ -6576,14 +6587,14 @@ partial dictionary MLOpSupportLimits {
65766587
1. Set |outputWidth| to ceiling(|outputWidth|).
65776588
1. Set |outputHeight| to ceiling(|outputHeight|).
65786589
</dl>
6590+
1. If either |outputHeight| or |outputWidth| is not a [=valid dimension=], then [=exception/throw=] a {{TypeError}}.
65796591
1. Switch on |options|.{{MLPool2dOptions/layout}}:
65806592
<dl class=switch>
65816593
: {{MLInputOperandLayout/"nchw"}}
65826594
:: Let |outputShape| be « |batches|, |channels|, |outputHeight|, |outputWidth| ».
65836595
: {{MLInputOperandLayout/"nhwc"}}
65846596
:: Let |outputShape| be « |batches|, |outputHeight|, |outputWidth|, |channels| ».
65856597
</dl>
6586-
1. If any [=list/item=] in |outputShape| is not a [=valid dimension=], then [=exception/throw=] a {{TypeError}}.
65876598
1. Set |desc|.{{MLOperandDescriptor/shape}} to |outputShape|.
65886599
1. *Make graph connections:*
65896600
1. Let |output| be the result of [=creating an MLOperand=] given [=this=] and |desc|.
@@ -7816,6 +7827,7 @@ partial dictionary MLOpSupportLimits {
78167827
1. Let |axis| be |options|.{{MLSplitOptions/axis}}.
78177828
1. If |axis| is greater than or equal to |input|'s [=MLOperand/rank=], then [=exception/throw=] a {{TypeError}}.
78187829
1. If |splits| is an {{unsigned long}}:
7830+
1. If |splits| is 0, then [=exception/throw=] a {{TypeError}}.
78197831
1. If |input|'s [=MLOperand/shape=][|axis|] % |splits| is not 0, then [=exception/throw=] a {{TypeError}}.
78207832
1. Otherwise, let |splitCount| be |splits|.
78217833
1. If |splits| is a [=sequence=]<{{unsigned long}}>:

0 commit comments

Comments
 (0)