Mercurial > repos > public > sbplib_julia
diff benchmark/benchmarks.jl @ 1556:ec5e7926c37b
Merge refactor/equidistant_grid/signature
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sat, 13 Apr 2024 23:49:39 +0200 |
parents | 43aaf710463e |
children | 7f5e4d2a5112 29c7a787e67d |
line wrap: on
line diff
--- a/benchmark/benchmarks.jl Sat Apr 13 23:44:56 2024 +0200 +++ b/benchmark/benchmarks.jl Sat Apr 13 23:49:39 2024 +0200 @@ -15,9 +15,9 @@ ll(d) = ntuple(i->0., d) lu(d) = ntuple(i->1., d) -g1 = equidistant_grid(sz(1)[1],ll(1)[1],lu(1)[1]) -g2 = equidistant_grid(sz(2),ll(2),lu(2)) -g3 = equidistant_grid(sz(3),ll(3),lu(3)) +g1 = equidistant_grid(ll(1)[1], lu(1)[1], sz(1)[1]) +g2 = equidistant_grid(ll(2), lu(2), sz(2)) +g3 = equidistant_grid(ll(3), lu(3), sz(3)) v1 = rand(sz(1)...) v2 = rand(sz(2)...)