MCPcopy Create free account
hub / github.com/PythonOT/POT / max

Method max

ot/backend.py:1594–1595  ·  view source on GitHub ↗
(self, a, axis=None, keepdims=False)

Source from the content-addressed store, hash-verified

1592 return jnp.cumsum(a, axis)
1593
1594 def max(self, a, axis=None, keepdims=False):
1595 return jnp.max(a, axis, keepdims=keepdims)
1596
1597 def min(self, a, axis=None, keepdims=False):
1598 return jnp.min(a, axis, keepdims=keepdims)

Callers

nothing calls this directly

Calls 1

maxMethod · 0.45

Tested by

no test coverage detected