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

Method matmul

ot/backend.py:1887–1888  ·  view source on GitHub ↗
(self, a, b)

Source from the content-addressed store, hash-verified

1885 return jnp.transpose(a, axes)
1886
1887 def matmul(self, a, b):
1888 return jnp.matmul(a, b)
1889
1890 def nan_to_num(self, x, copy=True, nan=0.0, posinf=None, neginf=None):
1891 return jnp.nan_to_num(x, copy=copy, nan=nan, posinf=posinf, neginf=neginf)

Callers

nothing calls this directly

Calls 1

matmulMethod · 0.45

Tested by

no test coverage detected