MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / ArgMaxTwoPass

Function ArgMaxTwoPass

tensorflow/compiler/xla/client/lib/arithmetic.cc:224–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

222}
223
224XlaOp ArgMaxTwoPass(XlaOp input, PrimitiveType output_type, int axis) {
225 return ArgMinMaxTwoPass(input, output_type, axis, /*is_min=*/false);
226}
227
228XlaOp ArgMinTwoPass(XlaOp input, PrimitiveType output_type, int axis) {
229 return ArgMinMaxTwoPass(input, output_type, axis, /*is_min=*/true);

Callers 2

CompileMethod · 0.85
CompileMethod · 0.85

Calls 1

ArgMinMaxTwoPassFunction · 0.85

Tested by

no test coverage detected