We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6e8f53 commit c305e9bCopy full SHA for c305e9b
test/legacy_test/test_linalg_matrix_exp.py
@@ -26,6 +26,9 @@
26
if sys.platform == 'win32':
27
RTOL = {'float32': 1e-02, 'float64': 1e-04}
28
ATOL = {'float32': 1e-02, 'float64': 1e-04}
29
+elif sys.platform == 'darwin':
30
+ RTOL = {'float32': 1e-06, 'float64': 1e-12}
31
+ ATOL = {'float32': 1e-06, 'float64': 1e-12}
32
else:
33
RTOL = {'float32': 1e-06, 'float64': 1e-15}
34
ATOL = {'float32': 1e-06, 'float64': 1e-15}
0 commit comments