Skip to content

Commit a48b247

Browse files
committed
benchmark/scripts/SCIPY/dsyrk.py: Overwrite will work on a Fortran array of the correct type.
1 parent b1b115e commit a48b247

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/scripts/SCIPY/dsyrk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def run_dsyrk(N, l):
1616

1717
start = time.time()
1818
for i in range(0, l):
19-
C[...] = blas.dsyrk(1.0, A)
19+
blas.dsyrk(1.0, A, c=C, overwrite_c=True)
2020
end = time.time()
2121

2222
timediff = (end - start)

0 commit comments

Comments
 (0)