Home
last modified time | relevance | path

Searched refs:kMAX (Results 1 – 10 of 10) sorted by relevance

/third_party/mindspore/mindspore/lite/src/delegate/tensorrt/op/
Dreduce_tensorrt.h42 {schema::ReduceMode::ReduceMode_ReduceMax, nvinfer1::ReduceOperation::kMAX},
Dpool_tensorrt.cc139 pooling_type_ = nvinfer1::PoolingType::kMAX; in ParseParams()
Delementwise_tensorrt.cc49 {schema::EltwiseMode::EltwiseMode_MAXIMUM, nvinfer1::ElementWiseOperation::kMAX}, in IsSupport()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/trt_pass/
Dtrt_op_converter.cc306 …_FUNC_REG(Maximum) { return AddElementLayer(node, context, nvinfer1::ElementWiseOperation::kMAX); } in MS_TRT_CONVERTER_FUNC_REG()
335 …RTER_FUNC_REG(ReduceMax) { return AddReduceLayer(node, context, nvinfer1::ReduceOperation::kMAX); } in MS_TRT_CONVERTER_FUNC_REG()
341 …CONVERTER_FUNC_REG(MaxPool) { return AddPoolingLayer(node, context, nvinfer1::PoolingType::kMAX); } in MS_TRT_CONVERTER_FUNC_REG()
379 …ontext->network()->addElementWise(*layer->getOutput(0), *c0, nvinfer1::ElementWiseOperation::kMAX); in MS_TRT_CONVERTER_FUNC_REG()
471 …ontext->network()->addElementWise(*layer->getOutput(0), *c0, nvinfer1::ElementWiseOperation::kMAX); in MS_TRT_CONVERTER_FUNC_REG()
508 …ontext->network()->addElementWise(*layer->getOutput(0), *c0, nvinfer1::ElementWiseOperation::kMAX); in MS_TRT_CONVERTER_FUNC_REG()
/third_party/mindspore/mindspore/lite/src/delegate/tensorrt/
Dtensorrt_subgraph.cc195 …if (!profile_->setDimensions(in_tensor.Name().c_str(), nvinfer1::OptProfileSelector::kMAX, input_d… in SetTensorRTNetworkInput()
/third_party/flatbuffers/src/
Didl_gen_dart.cpp940 assert(parser.opts.lang <= IDLOptions::kMAX); in DartMakeRule()
Didl_gen_ts.cpp1568 FLATBUFFERS_ASSERT(parser.opts.lang <= IDLOptions::kMAX); in TSMakeRule()
Didl_parser.cpp2455 return (langs > 0 && langs < IDLOptions::kMAX) && !(langs & ~supported_langs); in SupportsOptionalScalars()
/third_party/flatbuffers/include/flatbuffers/
Didl.h615 kMAX enumerator
/third_party/flatbuffers/tests/
Dtest.cpp3722 for (unsigned lang = 1; lang < flatbuffers::IDLOptions::kMAX; lang <<= 1) { in OptionalScalarsTest()