You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NhwcFusedConv is a Conv operator with optional activation and add operators fused in.
3572
-
Only has fp16 implementation as of 2023/04/15.
3573
3572
3574
3573
#### Version
3575
3574
@@ -3600,26 +3599,26 @@ This version of the operator has been available since version 1 of the 'com.micr
3600
3599
3601
3600
<dl>
3602
3601
<dt><tt>X</tt> : T</dt>
3603
-
<dd></dd>
3602
+
<dd>Input activation tensor in channels-last layout. For 2D convolution this is [N, H, W, C], where N is batch size, H/W are spatial dimensions, and C is the number of input channels.</dd>
3604
3603
<dt><tt>W</tt> : T</dt>
3605
-
<dd></dd>
3604
+
<dd>Convolution weight tensor in the standard ONNX Conv filter layout [M, C/group, kH, kW], where M is the number of output channels.</dd>
3606
3605
<dt><tt>B</tt> (optional) : T</dt>
3607
-
<dd></dd>
3606
+
<dd>Optional 1D bias tensor of shape [M].</dd>
3608
3607
<dt><tt>Z</tt> (optional) : T</dt>
3609
-
<dd>Tensor to be added to the output, must be the same shape and format as the output tensor.</dd>
3608
+
<dd>Optional residual/add tensor in the same channels-last layout and shape as the output tensor Y. For 2D convolution this is [N, out_H, out_W, M].</dd>
3610
3609
</dl>
3611
3610
3612
3611
#### Outputs
3613
3612
3614
3613
<dl>
3615
3614
<dt><tt>Y</tt> : T</dt>
3616
-
<dd></dd>
3615
+
<dd>Output tensor in channels-last layout. For 2D convolution this is [N, out_H, out_W, M], where M is the number of output channels.</dd>
0 commit comments