Skip to content

Commit 6b451f2

Browse files
Merge pull request #120 from JuliaSIMD/ChrisRackauckas-patch-1
Setup master tests for latest LTS
2 parents e92384e + a97af99 commit 6b451f2

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '^1.6.0-0'
18+
- 'lts'
19+
- '1'
20+
- 'pre'
1921
os:
2022
- ubuntu-latest
2123
- macOS-latest

.github/workflows/cix86.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '^1.6.0-0'
18+
- 'lts'
19+
- '1'
20+
- 'pre'
1921
os:
2022
- ubuntu-latest
2123
arch:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ LinearAlgebra = "1"
2626
SIMDTypes = "0.1"
2727
Static = "0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 1"
2828
StaticArrayInterface = "1"
29-
julia = "1.6"
29+
julia = "1.10"
3030

3131
[extras]
3232
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
---
1010

11+
1112
# NOTE: Looking for new maintainers, otherwise deprecated in Julia 1.11
1213

1314
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.

0 commit comments

Comments
 (0)