Skip to content

Commit 3a88a9a

Browse files
committed
fix: remove Optimisers.jl patch
feat: support general optimisers fix: incorrect field name fix: setup under jit chore: run formatter ci: run only reactant for now (drop me) fix: make_reactant_compatible after setup fix: support all optimisers correctly test: annotate fix: offload all pathces to Optimisers
1 parent 7e8f41c commit 3a88a9a

30 files changed

+656
-760
lines changed

.github/workflows/CI.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737
os:
3838
- ubuntu-latest
3939
test_group:
40-
- "core_layers"
41-
- "normalize_layers"
42-
- "recurrent_layers"
43-
- "autodiff"
44-
- "misc"
40+
# - "core_layers"
41+
# - "normalize_layers"
42+
# - "recurrent_layers"
43+
# - "autodiff"
44+
# - "misc"
4545
- "reactant"
4646
steps:
4747
- uses: actions/checkout@v4
@@ -86,11 +86,11 @@ jobs:
8686
fail-fast: false
8787
matrix:
8888
test_group:
89-
- "core_layers"
90-
- "normalize_layers"
91-
- "recurrent_layers"
92-
- "autodiff"
93-
- "misc"
89+
# - "core_layers"
90+
# - "normalize_layers"
91+
# - "recurrent_layers"
92+
# - "autodiff"
93+
# - "misc"
9494
- "reactant"
9595
steps:
9696
- uses: actions/checkout@v4

.github/workflows/CIPreRelease.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636
os:
3737
- ubuntu-latest
3838
test_group:
39-
- "core_layers"
40-
- "normalize_layers"
41-
- "recurrent_layers"
42-
- "autodiff"
43-
- "misc"
39+
# - "core_layers"
40+
# - "normalize_layers"
41+
# - "recurrent_layers"
42+
# - "autodiff"
43+
# - "misc"
4444
- "reactant"
4545
steps:
4646
- uses: actions/checkout@v4

.github/workflows/CI_LuxCUDA.yml

+75-75
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,79 @@
1-
name: CI (LuxCUDA)
2-
on:
3-
pull_request:
4-
branches:
5-
- main
6-
paths:
7-
- "lib/LuxCUDA/**"
8-
- ".github/workflows/CI_LuxCUDA.yml"
9-
push:
10-
branches:
11-
- main
1+
# name: CI (LuxCUDA)
2+
# on:
3+
# pull_request:
4+
# branches:
5+
# - main
6+
# paths:
7+
# - "lib/LuxCUDA/**"
8+
# - ".github/workflows/CI_LuxCUDA.yml"
9+
# push:
10+
# branches:
11+
# - main
1212

13-
concurrency:
14-
# Skip intermediate builds: always.
15-
# Cancel intermediate builds: only if it is a pull request build.
16-
group: ${{ github.workflow }}-${{ github.ref }}
17-
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
13+
# concurrency:
14+
# # Skip intermediate builds: always.
15+
# # Cancel intermediate builds: only if it is a pull request build.
16+
# group: ${{ github.workflow }}-${{ github.ref }}
17+
# cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1818

19-
jobs:
20-
test:
21-
runs-on: ubuntu-latest
22-
strategy:
23-
fail-fast: false
24-
matrix:
25-
version:
26-
- "1"
27-
steps:
28-
- uses: actions/checkout@v4
29-
- uses: julia-actions/setup-julia@v2
30-
with:
31-
version: ${{ matrix.version }}
32-
- uses: julia-actions/cache@v2
33-
- uses: julia-actions/julia-buildpkg@v1
34-
with:
35-
project: "lib/LuxCUDA"
36-
- name: "Run Tests"
37-
run: |
38-
import Pkg
39-
Pkg.test(; coverage="user")
40-
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0}
41-
- uses: julia-actions/julia-processcoverage@v1
42-
with:
43-
directories: lib/LuxCUDA/src
44-
- uses: codecov/codecov-action@v5
45-
with:
46-
files: lcov.info
47-
token: ${{ secrets.CODECOV_TOKEN }}
48-
verbose: true
49-
fail_ci_if_error: false
19+
# jobs:
20+
# test:
21+
# runs-on: ubuntu-latest
22+
# strategy:
23+
# fail-fast: false
24+
# matrix:
25+
# version:
26+
# - "1"
27+
# steps:
28+
# - uses: actions/checkout@v4
29+
# - uses: julia-actions/setup-julia@v2
30+
# with:
31+
# version: ${{ matrix.version }}
32+
# - uses: julia-actions/cache@v2
33+
# - uses: julia-actions/julia-buildpkg@v1
34+
# with:
35+
# project: "lib/LuxCUDA"
36+
# - name: "Run Tests"
37+
# run: |
38+
# import Pkg
39+
# Pkg.test(; coverage="user")
40+
# shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0}
41+
# - uses: julia-actions/julia-processcoverage@v1
42+
# with:
43+
# directories: lib/LuxCUDA/src
44+
# - uses: codecov/codecov-action@v5
45+
# with:
46+
# files: lcov.info
47+
# token: ${{ secrets.CODECOV_TOKEN }}
48+
# verbose: true
49+
# fail_ci_if_error: false
5050

51-
downgrade:
52-
if: ${{ !contains(github.event.head_commit.message, '[skip tests]') && github.base_ref == github.event.repository.default_branch }}
53-
runs-on: ubuntu-latest
54-
steps:
55-
- uses: actions/checkout@v4
56-
- uses: julia-actions/setup-julia@v2
57-
with:
58-
version: "1.10"
59-
- uses: julia-actions/julia-downgrade-compat@v1
60-
- uses: julia-actions/julia-buildpkg@v1
61-
with:
62-
project: "lib/LuxCUDA"
63-
- name: "Run Tests"
64-
run: |
65-
import Pkg
66-
Pkg.test(; coverage="user")
67-
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0}
68-
- uses: julia-actions/julia-processcoverage@v1
69-
with:
70-
directories: lib/LuxCUDA/src
71-
- uses: codecov/codecov-action@v5
72-
with:
73-
files: lcov.info
74-
token: ${{ secrets.CODECOV_TOKEN }}
75-
verbose: true
76-
fail_ci_if_error: false
51+
# downgrade:
52+
# if: ${{ !contains(github.event.head_commit.message, '[skip tests]') && github.base_ref == github.event.repository.default_branch }}
53+
# runs-on: ubuntu-latest
54+
# steps:
55+
# - uses: actions/checkout@v4
56+
# - uses: julia-actions/setup-julia@v2
57+
# with:
58+
# version: "1.10"
59+
# - uses: julia-actions/julia-downgrade-compat@v1
60+
# - uses: julia-actions/julia-buildpkg@v1
61+
# with:
62+
# project: "lib/LuxCUDA"
63+
# - name: "Run Tests"
64+
# run: |
65+
# import Pkg
66+
# Pkg.test(; coverage="user")
67+
# shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0}
68+
# - uses: julia-actions/julia-processcoverage@v1
69+
# with:
70+
# directories: lib/LuxCUDA/src
71+
# - uses: codecov/codecov-action@v5
72+
# with:
73+
# files: lcov.info
74+
# token: ${{ secrets.CODECOV_TOKEN }}
75+
# verbose: true
76+
# fail_ci_if_error: false
7777

78-
env:
79-
BACKEND_GROUP: "CPU"
78+
# env:
79+
# BACKEND_GROUP: "CPU"

0 commit comments

Comments
 (0)