We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c850b7 commit fcdab4fCopy full SHA for fcdab4f
onnxruntime/core/providers/webgpu/nn/conv_transpose.cc
@@ -57,7 +57,6 @@ Status ConvTranspose<is_channels_last>::ComputeInternal(ComputeContext& context)
57
58
bool has_bias = context.InputCount() > 2;
59
const auto* bias = has_bias ? context.Input<Tensor>(2) : nullptr;
60
-
61
// Validate bias shape if provided
62
if (has_bias && (bias->Shape().NumDimensions() != 1 || bias->Shape()[0] != num_output_channels)) {
63
return ORT_MAKE_STATUS(ONNXRUNTIME, INVALID_ARGUMENT, "invalid bias");
0 commit comments