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
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ jobs:
fail-fast: false
matrix:
group:
- All
- Core
- Autodiff
- GPU
- Downstream
- Reactant
- nopre
version:
- 'lts'
Expand All @@ -28,6 +32,10 @@ jobs:
exclude:
- group: nopre
version: 'pre'
- group: Downstream
version: 'pre'
- group: Reactant
version: 'pre'
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Downgrade
on:
pull_request:
branches:
- master
- main
paths-ignore:
- 'docs/**'
push:
branches:
- master
- main
paths-ignore:
- 'docs/**'
jobs:
Expand Down
29 changes: 1 addition & 28 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,42 +1,15 @@
[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
Functors = "d9f16b24-f501-4c13-a1f2-28368ffc5196"
InvertedIndices = "41ab1584-1d38-5bbf-9106-f11c6c58b48f"
JLArrays = "27aeb0d3-9eb9-45fb-866b-73c2ecf80fcb"
LabelledArrays = "2ee39098-c373-598a-b85f-a56591580800"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
Optimisers = "3bd65402-5787-11e9-1adc-39752487f4e2"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Reactant = "3c362404-f566-11ee-1572-e11a4b42c853"
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[compat]
Aqua = "0.8.14"
ArrayInterface = "7.22.0"
ArrayInterfaceCore = "0.1.29"
BenchmarkTools = "1.6.3"
FiniteDiff = "2.29.0"
ForwardDiff = "1.3.1"
Functors = "0.5.2"
InvertedIndices = "1.3.1"
JLArrays = "0.3.0"
LabelledArrays = "1.17.0"
OffsetArrays = "1.17.0"
Optimisers = "0.4.7"
Reactant = "0.2.198"
ReverseDiff = "1.16.2"
StaticArrays = "1.9.16"
Tracker = "0.2.38"
Unitful = "1.27.0"
Zygote = "0.7.10"
19 changes: 19 additions & 0 deletions test/autodiff/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66"
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
Optimisers = "3bd65402-5787-11e9-1adc-39752487f4e2"
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[compat]
ArrayInterface = "7.22.0"
FiniteDiff = "2.29.0"
ForwardDiff = "1.3.1"
Optimisers = "0.4.7"
ReverseDiff = "1.16.2"
Tracker = "0.2.38"
Zygote = "0.7.10"
1 change: 1 addition & 0 deletions test/autodiff_tests.jl → test/autodiff/autodiff_tests.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using ComponentArrays
import FiniteDiff, ForwardDiff, ReverseDiff, Tracker, Zygote
using Optimisers, ArrayInterface
using Test
Expand Down
Loading
Loading