Skip to content

Commit

Permalink
Update error message for eigh.
Browse files Browse the repository at this point in the history
  • Loading branch information
shoyer authored and skye committed Sep 25, 2019
1 parent f62b9d5 commit 298d838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jax/lax_linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def eigh_impl(operand, lower):

def eigh_translation_rule(c, operand, lower):
raise NotImplementedError(
"Symmetric eigendecomposition is only implemented on the CPU backend")
"Symmetric eigendecomposition is only implemented on the CPU and GPU backends")

def eigh_abstract_eval(operand, lower):
if isinstance(operand, ShapedArray):
Expand Down

0 comments on commit 298d838

Please sign in to comment.