Home
last modified time | relevance | path

Searched defs:ArgMax (Results 1 – 2 of 2) sorted by relevance

/third_party/mindspore/mindspore/core/ops/
Darg_max.h36 ArgMax() : PrimitiveC(kNameArgMax) { InitIOName({"x"}, {"output"}); } in ArgMax() function
37 explicit ArgMax(const std::string k_name) : PrimitiveC(k_name) { InitIOName({"x"}, {"output"}); } in ArgMax() function
/third_party/mindspore/tests/st/ops/graph_kernel/
Dtest_argmax.py24 class ArgMax(nn.Cell): class