From ab4d4e1ae09459fac42536cfc2766ff02fee1453 Mon Sep 17 00:00:00 2001 From: linkerzhang Date: Mon, 26 Nov 2018 23:48:24 -0800 Subject: [PATCH] fix output type specification for ConvInteger --- onnxruntime/contrib_ops/contrib_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/contrib_ops/contrib_ops.cc b/onnxruntime/contrib_ops/contrib_ops.cc index d698cdcbd3d58..0994b55e8fc9d 100644 --- a/onnxruntime/contrib_ops/contrib_ops.cc +++ b/onnxruntime/contrib_ops/contrib_ops.cc @@ -247,7 +247,7 @@ The integer convolution operator consumes an input tensor, a filter, and a paddi "Output data tensor that contains the result of the " "convolution. The output dimensions are functions " "of the kernel size, stride size, and pad lengths.", - "T1") + "T3") .TypeConstraint("T1", {"tensor(int8)", "tensor(uint8)"}, "Constrain input X and Z data types as 8-bit integer tensors") .TypeConstraint("T2", {"tensor(int8)", "tensor(uint8)"}, "Constrain input W data types as 8-bit integer tensor") .TypeConstraint("T3",