This repository was archived by the owner on Nov 4, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +41
-1
lines changed
Expand file tree Collapse file tree 5 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 77 version : " 1"
88 - JuliaCI/julia-coverage#v1:
99 codecov : true
10+ dirs :
11+ - src
12+ - ext
1013 command : julia --code-coverage=user --color=yes --project .buildkite/scripts/downstream.jl "{{matrix.repo}}" "CUDA"
1114 agents :
1215 queue : " juliagpu"
2629 version : " 1"
2730 - JuliaCI/julia-coverage#v1:
2831 codecov : true
32+ dirs :
33+ - src
34+ - ext
2935 command : julia --code-coverage=user --color=yes --project .buildkite/scripts/downstream.jl "{{matrix.repo}}" "AMDGPU"
3036 agents :
3137 queue : " juliagpu"
Original file line number Diff line number Diff line change 5050 - uses : julia-actions/julia-buildpkg@v1
5151 - uses : julia-actions/julia-runtest@v1
5252 - uses : julia-actions/julia-processcoverage@v1
53+ with :
54+ directories : src,ext
5355 - uses : codecov/codecov-action@v4
5456 with :
5557 files : lcov.info
@@ -100,6 +102,8 @@ jobs:
100102 exit(0) # Exit immediately, as a success
101103 end
102104 - uses : julia-actions/julia-processcoverage@v1
105+ with :
106+ directories : src,ext
103107 - uses : codecov/codecov-action@v4
104108 with :
105109 files : lcov.info
@@ -129,6 +133,8 @@ jobs:
129133 RETESTITEMS_NWORKERS : 4
130134 RETESTITEMS_NWORKER_THREADS : 2
131135 - uses : julia-actions/julia-processcoverage@v1
136+ with :
137+ directories : src,ext
132138 - uses : codecov/codecov-action@v4
133139 with :
134140 files : lcov.info
Original file line number Diff line number Diff line change 11name = " LuxCore"
22uuid = " bb33d45b-7691-41d6-9220-0943567d0623"
33authors = [" Avik Pal <avikpal@mit.edu> and contributors" ]
4- version = " 0.1.19 "
4+ version = " 0.1.20 "
55
66[deps ]
77Compat = " 34da2185-b29b-5c13-b0c7-acf172513d20"
@@ -10,10 +10,20 @@ Functors = "d9f16b24-f501-4c13-a1f2-28368ffc5196"
1010Random = " 9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1111Setfield = " efcf1570-3423-57d1-acb7-fd33fddbac46"
1212
13+ [weakdeps ]
14+ ChainRulesCore = " d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
15+ EnzymeCore = " f151be2c-9106-41f4-ab19-57ee4f262869"
16+
17+ [extensions ]
18+ LuxCoreChainRulesCoreExt = " ChainRulesCore"
19+ LuxCoreEnzymeCoreExt = " EnzymeCore"
20+
1321[compat ]
1422Aqua = " 0.8.4"
23+ ChainRulesCore = " 1.24"
1524Compat = " 4.15.0"
1625DispatchDoctor = " 0.4.10"
26+ EnzymeCore = " 0.7.7"
1727ExplicitImports = " 1.9.0"
1828Functors = " 0.4.8"
1929Optimisers = " 0.3"
Original file line number Diff line number Diff line change 1+ module LuxCoreChainRulesCoreExt
2+
3+ using ChainRulesCore: @non_differentiable
4+ using LuxCore: LuxCore
5+ using Random: AbstractRNG
6+
7+ @non_differentiable LuxCore. replicate (:: AbstractRNG )
8+
9+ end
Original file line number Diff line number Diff line change 1+ module LuxCoreEnzymeCoreExt
2+
3+ using EnzymeCore: EnzymeRules
4+ using LuxCore: LuxCore
5+ using Random: AbstractRNG
6+
7+ EnzymeRules. inactive (:: typeof (LuxCore. replicate), :: AbstractRNG ) = nothing
8+
9+ end
You can’t perform that action at this time.
0 commit comments