Skip to content

Commit a124a72

Browse files
Enable reusing fft plans
1 parent d3c2202 commit a124a72

File tree

12 files changed

+1672
-175
lines changed

12 files changed

+1672
-175
lines changed

.github/workflows/Documentation.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,11 @@ jobs:
1717
os: [ubuntu-latest]
1818
steps:
1919
- uses: actions/checkout@v4
20-
- uses: julia-actions/setup-julia@latest
20+
- uses: julia-actions/setup-julia@v2
2121
with:
2222
version: ${{ matrix.julia-version }}
2323
- name: Cache artifacts
24-
uses: actions/cache@v4
25-
env:
26-
cache-name: cache-artifacts
27-
with:
28-
path: ~/.julia/artifacts
29-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
30-
restore-keys: |
31-
${{ runner.os }}-test-${{ env.cache-name }}-
32-
${{ runner.os }}-test-
33-
${{ runner.os }}-
24+
uses: julia-actions/cache@v2
3425
- name: Install dependencies
3526
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
3627
- name: Build and deploy

.github/workflows/UnitTest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ jobs:
4444
uses: julia-actions/cache@v2
4545

4646
- name: "Unit Test"
47-
uses: julia-actions/julia-runtest@master
47+
uses: julia-actions/julia-runtest@v1
48+
env:
49+
JULIA_NUM_THREADS: 2
4850

4951
- uses: julia-actions/julia-processcoverage@v1
5052
- uses: codecov/codecov-action@v5

Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
1414
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1515
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
1616
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
17+
RealFFTs = "3645faec-0534-4e91-afef-021db0981eec"
1718
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1819
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1920
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
@@ -31,10 +32,11 @@ ImageCore = "0.10"
3132
OffsetArrays = "1.9"
3233
PrecompileTools = "1"
3334
Reexport = "1.1"
35+
RealFFTs = "1"
3436
StaticArrays = "0.10, 0.11, 0.12, 1.0"
3537
Statistics = "1"
3638
TiledIteration = "0.2, 0.3, 0.4, 0.5"
37-
julia = "1.6"
39+
julia = "1.10"
3840

3941
[extras]
4042
AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9"

0 commit comments

Comments
 (0)