mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
fix a shape inference bug. (#605)
This commit is contained in:
parent
de9f1ff1ff
commit
3f507fa9f8
1 changed files with 1 additions and 1 deletions
|
|
@ -271,7 +271,7 @@ Sample echo operator.)DOC");
|
|||
"T")
|
||||
.TypeConstraint("T", {"tensor(float)"}, "Constrain input0 and output types to float tensors")
|
||||
.TypeAndShapeInferenceFunction([](ONNX_NAMESPACE::InferenceContext& ctx) {
|
||||
ONNX_NAMESPACE::convPoolTypeAndShapeInference(ctx, false, true);
|
||||
ONNX_NAMESPACE::convPoolTypeAndShapeInference(ctx, true, false);
|
||||
});
|
||||
|
||||
ONNX_CONTRIB_OPERATOR_SCHEMA(FusedConv)
|
||||
|
|
|
|||
Loading…
Reference in a new issue