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 320f9fc commit 7465f50Copy full SHA for 7465f50
arrayfire/tests/simple/lapack.py
@@ -39,7 +39,7 @@ def simple_lapack(verbose=False):
39
display_func(a)
40
41
a = af.randu(5, 5)
42
- a = af.matmulTN(a, a) + 10 * af.identity(5,5)
+ a = af.matmulTN(a, a.copy()) + 10 * af.identity(5,5)
43
44
R,info = af.cholesky(a)
45
display_func(R)
0 commit comments