Skip to content

Commit cf72464

Browse files
Apply suggestion from @github-actions[bot]
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7c969c5 commit cf72464

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

onnxruntime/core/providers/webgpu/nn/conv_transpose.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Status ConvTranspose<is_channels_last>::ComputeInternal(ComputeContext& context)
6464
return ORT_MAKE_STATUS(ONNXRUNTIME, INVALID_ARGUMENT, "invalid bias: bias must be 1D tensor");
6565
}
6666
if (bias_shape[0] != num_output_channels) {
67-
return ORT_MAKE_STATUS(ONNXRUNTIME, INVALID_ARGUMENT, "invalid bias: bias size (", bias_shape[0],
67+
return ORT_MAKE_STATUS(ONNXRUNTIME, INVALID_ARGUMENT, "invalid bias: bias size (", bias_shape[0],
6868
") must be equal to output channels (", num_output_channels, ")");
6969
}
7070
}

0 commit comments

Comments
 (0)