Fixing a typo in core/shape_inference (#18912)

This commit is contained in:
Wang Kai 2023-08-02 15:43:15 +08:00 committed by GitHub
parent b774561b98
commit a2039e8410
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,8 +15,8 @@ namespace v8 {
template <class TShape, class TRShape = result_shape_t<TShape>>
std::vector<TRShape> shape_infer(const AdaptiveAvgPool* op,
const std::vector<TShape>& input_shapes,
const ITensorAccessor& tensor_acessor = make_tensor_accessor()) {
return {pooling::out_shape_infer(op, input_shapes, tensor_acessor)};
const ITensorAccessor& tensor_accessor = make_tensor_accessor()) {
return {pooling::out_shape_infer(op, input_shapes, tensor_accessor)};
}
} // namespace v8
} // namespace op