Skip to content

Commit 837739e

Browse files
authored
Fix links in readme (#112)
JuliaMatrices → JuliaLinearAlgebra
1 parent b37ce0a commit 837739e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ArrayLayouts.jl
22
A Julia package for describing array layouts and more general fast linear algebra
33

4-
[![Build Status](https://github.com/JuliaMatrices/ArrayLayouts.jl/workflows/CI/badge.svg)](https://github.com/JuliaMatrices/ArrayLayouts.jl/actions)
5-
[![codecov](https://codecov.io/gh/JuliaMatrices/ArrayLayouts.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaMatrices/ArrayLayouts.jl)
4+
[![Build Status](https://github.com/JuliaLinearAlgebra/ArrayLayouts.jl/workflows/CI/badge.svg)](https://github.com/JuliaMatrices/ArrayLayouts.jl/actions)
5+
[![codecov](https://codecov.io/gh/JuliaLinearAlgebra/ArrayLayouts.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaMatrices/ArrayLayouts.jl)
66

77
This package implements a trait-based framework for describing array layouts such as column major, row major, etc. that can be dispatched
88
to appropriate BLAS or optimised Julia linear algebra routines. This supports a much wider class of matrix types than Julia's in-built `StridedArray`. Here is an example:
@@ -39,4 +39,4 @@ lower to the correct BLAS calls via lazy objects `MulAdd(α, A, B, β, C)`, `Lmu
3939
in analogy to `Base.Broadcasted`.
4040

4141
Note there is also a higher level function `mul(A, B)` that materializes via `Mul(A, B)`, which uses the layout of `A` and `B`
42-
to further reduce to either `MulAdd`, `Lmul`, and `Rmul`.
42+
to further reduce to either `MulAdd`, `Lmul`, and `Rmul`.

0 commit comments

Comments
 (0)