benchmark/scripts/SCIPY/ssyrk.py: Overwrite will work on a Fortran array of the correct type.
This commit is contained in:
parent
07bba933ff
commit
b1b115ecd6
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue