Skip to content

Commit

Permalink
Merge pull request tensorly#575 from characat0/patch-2
Browse files Browse the repository at this point in the history
Add dummy keyword arguments to Backend svd to throw a more informative error
  • Loading branch information
JeanKossaifi authored Oct 28, 2024
2 parents edd74d1 + f86fab3 commit d4652c8
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit d4652c8

Please sign in to comment.