-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Description
After having the (for now) fruitless discussion I'd like to propose that at least something like
using BenchmarkTools, Random, LinearAlgebra
elt = Float64
n = 32
Random.seed!(1234)
# A = rand(elt, n, n)
A = rand(elt, n, n)
b = rand(elt, n)
println(BLAS.get_config())
t2 = BLAS.syr!('U', elt(1), b, Symmetric(copy(A)))
and this
using BenchmarkTools, Random, LinearAlgebra
elt = Float64
n = 32
Random.seed!(1234)
# A = rand(elt, n, n)
A = rand(elt, n, n)
b = Symmetric(rand(elt, n, n))
println(BLAS.get_config())
t2 = BLAS.syrk!('U', 'N', elt(1), b, elt(1), Symmetric(copy(A)))
ought to work. See JuliaLang/LinearAlgebra.jl#887.
Metadata
Metadata
Assignees
Labels
No labels