Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tensorly/backend/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ def kron(self, a, b):
b = self.reshape(b, (1, s3, 1, s4))
return self.reshape(a * b, (s1 * s3, s2 * s4))

def svd(self, matrix):
def svd(self, matrix, **_):
raise NotImplementedError

def eigh(self, matrix):
Expand Down