JuliaMath / Yeppp.jl

Yeppp! bindings
Other
55 stars 14 forks source link

update readme: not 7x faster than Base.log #37

Closed floswald closed 6 years ago

floswald commented 6 years ago

i think it might be worth updating the readme. I cannot reproduce the 7-times speadup on julia v0.6

julia> VERSION
v"0.6.2"
julia> using Yeppp
julia> x = rand(10^7)
julia> ty = @elapsed Yeppp.log!(similar(x), x)
julia> t  = @elapsed log.(x)
julia> t/ty
0.66288917164934
KristofferC commented 6 years ago

Updated.