(*args, **kwargs)
| 67 | |
| 68 | |
| 69 | def tensordot(*args, **kwargs): |
| 70 | xp = get_array_namespace(*args) |
| 71 | return xp.tensordot(*args, **kwargs) |
| 72 | |
| 73 | |
| 74 | def cross(*args, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…