Open Canoming opened 5 months ago
We are planning on defining the function tensordot in the abstract backend. For now a good solution is using matmul that seems to work in the same way for all backends.
@Canoming @Simone-Bordoni can this be closed?
When I try to call the function
tensordot
from different backends, the arguments are not consistent:The argument
axes
is nameddims
inPyTorchBackend
, which is different from all other backends. Also, the type of argument is different. While other backends supporttuple
of numbers foraxes
, thePyTorchBackend
only supporttuple
oflist
.