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.
3764
-
Only has fp16 implementation as of 2023/04/15.
3765
3764
3766
3765
#### Version
3767
3766
@@ -3792,26 +3791,26 @@ This version of the operator has been available since version 1 of the 'com.micr
3792
3791
3793
3792
<dl>
3794
3793
<dt><tt>X</tt> : T</dt>
3795
-
<dd></dd>
3794
+
<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>
3796
3795
<dt><tt>W</tt> : T</dt>
3797
-
<dd></dd>
3796
+
<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>
3798
3797
<dt><tt>B</tt> (optional) : T</dt>
3799
-
<dd></dd>
3798
+
<dd>Optional 1D bias tensor of shape [M].</dd>
3800
3799
<dt><tt>Z</tt> (optional) : T</dt>
3801
-
<dd>Tensor to be added to the output, must be the same shape and format as the output tensor.</dd>
3800
+
<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>
3802
3801
</dl>
3803
3802
3804
3803
#### Outputs
3805
3804
3806
3805
<dl>
3807
3806
<dt><tt>Y</tt> : T</dt>
3808
-
<dd></dd>
3807
+
<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