benchmark/scripts/SCIPY/ssyrk.py: Overwrite will work on a Fortran array of the correct type.

This commit is contained in:
John Kirkham 2016-01-19 15:31:37 -05:00
parent 07bba933ff
commit b1b115ecd6
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ def run_ssyrk(N, l):
start = time.time()
for i in range(0, l):
C[...] = blas.ssyrk(1.0, A)
blas.ssyrk(1.0, A, c=C, overwrite_c=True)
end = time.time()
timediff = (end - start)