Skip to content

Commit e393dd1

Browse files
committed
corrected function call to conv_transpose_attrs_.PrepareForCompute to be compatible with recent changes to conv_transpose_attributes.h file
1 parent 50a47cf commit e393dd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

onnxruntime/core/providers/cpu/quantization/qlinearconvtranspose.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Status QLinearConvTranspose<T>::DoConvTranspose(OpKernelContext* context) const
118118
size_t num_inputs = OpKernel::Node().InputDefs().size();
119119
ConvTransposeAttributes::Prepare p;
120120
bool has_bias = num_inputs == 9;
121-
ORT_RETURN_IF_ERROR(conv_transpose_attrs_.PrepareForCompute(context, has_bias, p, false, nullptr, true));
121+
ORT_RETURN_IF_ERROR(conv_transpose_attrs_.PrepareForCompute(context, has_bias, p, false, nullptr, false, true, true));
122122

123123
const int64_t input_image_size = p.input_shape.Size();
124124

0 commit comments

Comments
 (0)