diff --git a/docs/ContribOperators.md b/docs/ContribOperators.md index 95dc8c3cde46c..06c430cdf27c1 100644 --- a/docs/ContribOperators.md +++ b/docs/ContribOperators.md @@ -31,6 +31,7 @@ Do not modify directly.* * com.microsoft.ExpandDims * com.microsoft.FastGelu * com.microsoft.FusedConv + * com.microsoft.FusedConv * com.microsoft.FusedGemm * com.microsoft.FusedMatMul * com.microsoft.FusedMatMulActivation @@ -1707,6 +1708,64 @@ This version of the operator has been available since version 1 of the 'com.micr +### **com.microsoft.FusedConvTranspose** + + The fused convolution transpose operator schema is the same as ConvTranspose besides it includes an attribute + activation. + +#### Version + +This version of the operator has been available since version 1 of the 'com.microsoft' operator set. + +#### Attributes + +
+
activation : string
+
+
activation_params : list of floats
+
+
auto_pad : string
+
+
dilations : list of ints
+
+
group : int
+
+
kernel_shape : list of ints
+
+
pads : list of ints
+
+
strides : list of ints
+
+
+ +#### Inputs (2 - 4) + +
+
X : T
+
+
W : T
+
+
B (optional) : T
+
+
Z (optional) : T
+
+
+ +#### Outputs + +
+
Y : T
+
+
+ +#### Type Constraints + +
+
T : tensor(float16), tensor(float), tensor(double)
+
Constrain input and output types to float tensors
+
+ + ### **com.microsoft.FusedGemm** The FusedGemm operator schema is the same as Gemm besides it includes attributes