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

Method matmul

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

Source from the content-addressed store, hash-verified

2868 return cp.transpose(a, axes)
2869
2870 def matmul(self, a, b):
2871 return cp.matmul(a, b)
2872
2873 def nan_to_num(self, x, copy=True, nan=0.0, posinf=None, neginf=None):
2874 return cp.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