diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d860d09..b26fd298 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,9 @@ jobs: fail-fast: false matrix: version: - - '^1.6.0-0' + - 'lts' + - '1' + - 'pre' os: - ubuntu-latest - macOS-latest diff --git a/.github/workflows/cix86.yml b/.github/workflows/cix86.yml index 91da883f..2df66c05 100644 --- a/.github/workflows/cix86.yml +++ b/.github/workflows/cix86.yml @@ -15,7 +15,9 @@ jobs: fail-fast: false matrix: version: - - '^1.6.0-0' + - 'lts' + - '1' + - 'pre' os: - ubuntu-latest arch: diff --git a/Project.toml b/Project.toml index 46733635..5be8b427 100644 --- a/Project.toml +++ b/Project.toml @@ -26,7 +26,7 @@ LinearAlgebra = "1" SIMDTypes = "0.1" Static = "0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 1" StaticArrayInterface = "1" -julia = "1.6" +julia = "1.10" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" diff --git a/README.md b/README.md index 7c5e5f7e..3752b6e8 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ --- + # NOTE: Looking for new maintainers, otherwise deprecated in Julia 1.11 This is a library providing basic SIMD support in Julia. VectorizationBase exists in large part to serve the needs of [LoopVectorization.jl](https://github.com/JuliaSIMD/LoopVectorization.jl)'s code gen, prioritizing this over a stable user-facing API. Thus, you may wish to consider [SIMD.jl](https://github.com/eschnett/SIMD.jl) as an alternative when writing explicit SIMD code in Julia. That said, the `Vec` and `VecUnroll` types are meant to "just work" as much as possible when passed to user-defined functions, so it should be reasonably stable in practice. Other parts of the code -- e.g, loading and storing vectors as well as the `stridedpointer` function -- will hopefully converge reasonably soon, and have support for various `AbstractArray` types propogated through the ecosystem by taking advantage of [ArrayInterface.jl](https://github.com/SciML/ArrayInterface.jl), so that VectorizationBase can begin to offer a stable, ergonomic, and well supported API fairly soon.