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

Function ArgMin

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

Source from the content-addressed store, hash-verified

218}
219
220XlaOp ArgMin(XlaOp input, PrimitiveType output_type, int axis) {
221 return ArgMinMax(input, output_type, axis, /*is_min=*/true);
222}
223
224XlaOp ArgMaxTwoPass(XlaOp input, PrimitiveType output_type, int axis) {
225 return ArgMinMaxTwoPass(input, output_type, axis, /*is_min=*/false);

Callers 2

XLA_TEST_FFunction · 0.70
CompileMethod · 0.50

Calls 1

ArgMinMaxFunction · 0.70

Tested by 1

XLA_TEST_FFunction · 0.56