add input1 to avgpool

This commit is contained in:
yanghaoran 2020-07-15 10:44:59 +08:00
parent 561bd0eb74
commit daa0ddd275
1 changed files with 2 additions and 1 deletions

View File

@ -28,8 +28,9 @@ avg_pool_op_info = TBERegOp("AvgPool") \
.attr("padding", "required", "str", "all") \
.attr("data_format", "optional", "str", "all") \
.input(0, "x", False, "required", "all") \
.input(1, "filter", False, "optional", "all") \
.output(0, "y", False, "required", "all") \
.dtype_format(DataType.F16_5HD, DataType.F16_5HD) \
.dtype_format(DataType.F16_5HD, DataType.F16_FracZ, DataType.F16_5HD) \
.get_op_info()