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

Method matmul

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

Source from the content-addressed store, hash-verified

1474 return np.transpose(a, axes)
1475
1476 def matmul(self, a, b):
1477 return np.matmul(a, b)
1478
1479 def nan_to_num(self, x, copy=True, nan=0.0, posinf=None, neginf=None):
1480 return np.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