Skip to content

Commit 6251cb7

Browse files
committed
Miscellaneous fixes.
1 parent e867454 commit 6251cb7

28 files changed

+115
-144
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,11 @@ Similar approaches can be taken to make kernels working with a variety of numeri
332332

333333
## Packages using LoopVectorization
334334

335-
* [Gaius](https://github.com/MasonProtter/Gaius.jl)
335+
* [Gaius.jl](https://github.com/MasonProtter/Gaius.jl)
336+
* [MaBLAS.jl](https://github.com/YingboMa/MaBLAS.jl)
337+
* [PaddedMatrices.jl](https://github.com/chriselrod/PaddedMatrices.jl)
338+
* [RecursiveFactorization.jl](https://github.com/YingboMa/RecursiveFactorization.jl)
339+
* [Tullio.jl](https://github.com/mcabbott/Tullio.jl)
336340

337341
If you're using LoopVectorization, please feel free to file a PR adding yours to the list!
338342

benchmark/looptests.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,10 @@ function jlogdettriangle(T::Union{LowerTriangular,UpperTriangular})
267267
ld
268268
end
269269
function jlogdettriangleavx(T::Union{LowerTriangular,UpperTriangular})
270-
ld = 0.0
270+
A = parent(T) # No longer supported
271+
ld = zero(eltype(A))
271272
@avx for n 1:size(T,1)
272-
ld += log(T[n,n])
273+
ld += log(A[n,n])
273274
end
274275
ld
275276
end

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)