提交 887fd1f2 authored 作者: abalkin's avatar abalkin 提交者: Frederic

Fixed the error message.

上级 82974699
...@@ -952,8 +952,9 @@ class Eigh(Eig): ...@@ -952,8 +952,9 @@ class Eigh(Eig):
try: try:
w[0], v[0] = self._numop(x, self.UPLO) w[0], v[0] = self._numop(x, self.UPLO)
except numpy.linalg.LinAlgError: except numpy.linalg.LinAlgError:
logger.debug('Failed to find %s of %s' % (node.inputs[0], logger.debug('Failed to find %s of %s' % (self._numop.__name__,
self._numop.__name__)) node.inputs[0])
raise raise
def grad(self, inputs, g_outputs): def grad(self, inputs, g_outputs):
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论