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

Function ArgMax

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

Source from the content-addressed store, hash-verified

214} // namespace
215
216XlaOp ArgMax(XlaOp input, PrimitiveType output_type, int axis) {
217 return ArgMinMax(input, output_type, axis, /*is_min=*/false);
218}
219
220XlaOp ArgMin(XlaOp input, PrimitiveType output_type, int axis) {
221 return ArgMinMax(input, output_type, axis, /*is_min=*/true);

Callers 3

XLA_TEST_FFunction · 0.70
CompileMethod · 0.50
CompileMethod · 0.50

Calls 1

ArgMinMaxFunction · 0.70

Tested by 1

XLA_TEST_FFunction · 0.56