Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Octavian"
uuid = "6fd5a793-0b7e-452c-907f-f8bfe9c57db4"
authors = ["Mason Protter", "Chris Elrod", "Dilum Aluthge", "contributors"]
version = "0.2.9"
version = "0.2.10"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,24 @@
[ci-julia-nightly-img]: https://github.com/JuliaLinearAlgebra/Octavian.jl/workflows/CI%20(Julia%20nightly)/badge.svg "Continuous Integration (Julia nightly)"
[codecov-img]: https://codecov.io/gh/JuliaLinearAlgebra/Octavian.jl/branch/master/graph/badge.svg "Code Coverage"

Octavian.jl is a multi-threaded BLAS-like library that provides pure Julia
matrix multiplication, built on top of
Octavian.jl
is a multi-threaded BLAS-like library that provides pure Julia
matrix multiplication on the CPU, built on top of
[LoopVectorization.jl](https://github.com/chriselrod/LoopVectorization.jl).

Please see the
[Octavian documentation](https://JuliaLinearAlgebra.github.io/Octavian.jl/stable).

## Related Packages

| Julia Package | CPU | GPU |
| ---------------------------------------------------------------- | --- | --- |
| [Gaius.jl](https://github.com/MasonProtter/Gaius.jl) | Yes | No |
| [GemmKernels.jl](https://github.com/JuliaGPU/GemmKernels.jl) | No | Yes |
| [Octavian.jl](https://github.com/JuliaLinearAlgebra/Octavian.jl) | Yes | No |
| [Tullio.jl](https://github.com/mcabbott/Tullio.jl) | Yes | Yes |

In general:
- Octavian has the fastest CPU performance.
- GemmKernels has the fastest GPU performance.
- Tullio is the most flexible.
17 changes: 11 additions & 6 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,24 @@ CurrentModule = Octavian

# Octavian

Octavian.jl is a multi-threaded BLAS-like library that provides pure Julia
matrix multiplication, built on top of
[Octavian.jl](https://github.com/JuliaLinearAlgebra/Octavian.jl)
is a multi-threaded BLAS-like library that provides pure Julia
matrix multiplication on the CPU, built on top of
[LoopVectorization.jl](https://github.com/chriselrod/LoopVectorization.jl).

The source code for Octavian is available in the
[GitHub repository](https://github.com/JuliaLinearAlgebra/Octavian.jl).

## Related Packages

You may also be interested in:
1. [Tullio.jl](https://github.com/mcabbott/Tullio.jl)
2. [Gaius.jl](https://github.com/MasonProtter/Gaius.jl)
| Julia Package | CPU | GPU |
| ---------------------------------------------------------------- | --- | --- |
| [Gaius.jl](https://github.com/MasonProtter/Gaius.jl) | Yes | No |
| [GemmKernels.jl](https://github.com/JuliaGPU/GemmKernels.jl) | No | Yes |
| [Octavian.jl](https://github.com/JuliaLinearAlgebra/Octavian.jl) | Yes | No |
| [Tullio.jl](https://github.com/mcabbott/Tullio.jl) | Yes | Yes |

In general:
- Octavian is the most performant.
- Octavian has the fastest CPU performance.
- GemmKernels has the fastest GPU performance.
- Tullio is the most flexible.