We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcdab4f commit 9c9ef07Copy full SHA for 9c9ef07
onnxruntime/core/providers/webgpu/nn/conv_transpose.cc
@@ -61,7 +61,7 @@ Status ConvTranspose<is_channels_last>::ComputeInternal(ComputeContext& context)
61
if (has_bias && (bias->Shape().NumDimensions() != 1 || bias->Shape()[0] != num_output_channels)) {
62
return ORT_MAKE_STATUS(ONNXRUNTIME, INVALID_ARGUMENT, "invalid bias");
63
}
64
-
+
65
if (input_shape.NumDimensions() == 3 && filter_shape.NumDimensions() == 3) {
66
// ConvTranspose1D
67
TensorShapeVector input_shape_vector = input_shape.AsShapeVector();
0 commit comments