benchmark/scripts/SCIPY/dsyrk.py: Overwrite will work on a Fortran array of the correct type.
This commit is contained in:
parent
b1b115ecd6
commit
a48b247e9e
|
@ -16,7 +16,7 @@ def run_dsyrk(N, l):
|
||||||
|
|
||||||
start = time.time()
|
start = time.time()
|
||||||
for i in range(0, l):
|
for i in range(0, l):
|
||||||
C[...] = blas.dsyrk(1.0, A)
|
blas.dsyrk(1.0, A, c=C, overwrite_c=True)
|
||||||
end = time.time()
|
end = time.time()
|
||||||
|
|
||||||
timediff = (end - start)
|
timediff = (end - start)
|
||||||
|
|
Loading…
Reference in New Issue