Browse Source

disable NaN checks before BLAS calls dsolve.R (shorter formula)

tags/v0.3.6^2
Andrew 6 years ago
parent
commit
7af8b21dbb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      benchmark/scripts/R/dsolve.R

+ 1
- 1
benchmark/scripts/R/dsolve.R View File

@@ -40,7 +40,7 @@ while (n <= nto) {
solve(A, B)
})

mflops <- (2.0/3 * n * n * n + 2 * n * n * n) * loops/ (z[3] * 1e+06)
mflops <- (8.0 / 3 * n * n * n) * loops / (z[3] * 1e+06)

st <- sprintf("%.0fx%.0f :", n, n)
cat(sprintf("%20s %10.2f MFlops %10.6f sec\n", st, mflops, z[3]))


Loading…
Cancel
Save