Skip to content

Commit 652f368

Browse files
committed
Rerun benchmarks following latest updates.
1 parent 4503ec1 commit 652f368

28 files changed

+55
-38
lines changed

benchmark/driver.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ filter2d_dynamic_bench = benchmark_filter2ddynamic(sizes)#512:-1:2)
3333
filter2d_3x3_bench = benchmark_filter2d3x3(sizes)#512:-1:2)
3434
filter2d_unrolled_bench = benchmark_filter2dunrolled(sizes)#512:-1:2)
3535

36+
dot3_bench = benchmark_dot3(sizes)
3637
dot_bench = benchmark_dot(sizes)
3738
selfdot_bench = benchmark_selfdot(sizes)
38-
dot3_bench = benchmark_dot3(sizes)
3939
sse_bench = benchmark_sse(sizes)
4040
aplusBc_bench = benchmark_aplusBc(sizes)
4141
AplusAt_bench = benchmark_AplusAt(sizes)
42-
exp_bench = benchmark_exp(sizes)
42+
vexp_bench = benchmark_exp(sizes)
4343
randomaccess_bench = benchmark_random_access(sizes)
4444
logdettriangle_bench = benchmark_logdettriangle(sizes)
4545

@@ -55,7 +55,7 @@ save(joinpath(PICTURES, "bench_dot3_v$v.$filetype"), plot(dot3_bench));
5555
save(joinpath(PICTURES, "bench_sse_v$v.$filetype"), plot(sse_bench));
5656
save(joinpath(PICTURES, "bench_aplusBc_v$v.$filetype"), plot(aplusBc_bench));
5757
save(joinpath(PICTURES, "bench_AplusAt_v$v.$filetype"), plot(AplusAt_bench));
58-
save(joinpath(PICTURES, "bench_exp_v$v.$filetype"), plot(exp_bench));
58+
save(joinpath(PICTURES, "bench_exp_v$v.$filetype"), plot(vexp_bench));
5959
save(joinpath(PICTURES, "bench_random_access_v$v.$filetype"), plot(randomaccess_bench));
6060
save(joinpath(PICTURES, "bench_logdettriangle_v$v.$filetype"), plot(logdettriangle_bench));
6161
save(joinpath(PICTURES, "bench_AmulB_v$v.$filetype"), plot(AmulB_bench));
@@ -75,7 +75,7 @@ plot(selfdot_bench)
7575
plot(gemv_bench)
7676
plot(dot3_bench)
7777
plot(sse_bench)
78-
plot(exp_bench)
78+
plot(vexp_bench)
7979
plot(aplusBc_bench)
8080
plot(AplusAt_bench)
8181

benchmark/looptests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using LoopVectorization, LinearAlgebra, OffsetArrays
22
BLAS.set_num_threads(1)
33

4-
struct SizedOffsetMatrix{T,LR,UR,LC,RC} <: AbstractMatrix{T}
4+
struct SizedOffsetMatrix{T,LR,UR,LC,RC} <: DenseMatrix{T}
55
data::Matrix{T}
66
end
77
using LoopVectorization.VectorizationBase: StaticUnitRange

docs/src/assets/bench_AmulB_v1.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/src/assets/bench_AmulBt_v1.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/src/assets/bench_Amulvb_v1.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/src/assets/bench_AplusAt_v1.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/src/assets/bench_AtmulB_v1.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/src/assets/bench_AtmulBt_v1.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/src/assets/bench_Atmulvb_v1.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/src/assets/bench_aplusBc_v1.svg

Lines changed: 1 addition & 1 deletion
Loading

0 commit comments

Comments
 (0)