Home
last modified time | relevance | path

Searched defs:AvgPool (Results 1 – 3 of 3) sorted by relevance

/third_party/mindspore/mindspore/core/ops/
Davg_pool.h35 AvgPool() : PrimitiveC(kNameAvgPool) { InitIOName({"x"}, {"output"}); } in AvgPool() function
36 explicit AvgPool(const std::string k_name) : PrimitiveC(k_name) { InitIOName({"x"}, {"output"}); } in AvgPool() function
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/trt_pass/
Dtrt_op_converter.cc340 MS_TRT_CONVERTER_FUNC_REG(AvgPool) { return AddPoolingLayer(node, context, nvinfer1::PoolingType::k… in MS_TRT_CONVERTER_FUNC_REG() argument
/third_party/mindspore/mindspore/ops/operations/
Dnn_ops.py1989 class AvgPool(_Pool): class