|
8 | 8 | cuda: "*" |
9 | 9 | command: | |
10 | 10 | julia --color=yes --project -e 'using Pkg; Pkg.add("CUDA"); Pkg.add("NLPModels"); Pkg.add("NLPModelsTest"); Pkg.instantiate()' |
11 | | - julia --color=yes --project -e 'include("test/gpu.jl")' |
| 11 | + julia --color=yes --project -e 'include("test/gpu/nvidia.jl")' |
12 | 12 | timeout_in_minutes: 30 |
| 13 | + |
| 14 | + - label: "CPUs -- ForwardDiff.jl" |
| 15 | + plugins: |
| 16 | + - JuliaCI/julia#v1: |
| 17 | + version: "1.10" |
| 18 | + agents: |
| 19 | + queue: "juliaecosystem" |
| 20 | + os: "linux" |
| 21 | + arch: "x86_64" |
| 22 | + command: | |
| 23 | + julia --color=yes --project -e ' |
| 24 | + using Pkg |
| 25 | + Pkg.add("OptimizationProblems") |
| 26 | + Pkg.add("ForwardDiff") |
| 27 | + Pkg.instantiate() |
| 28 | + include("test/backend/ForwardDiff.jl")' |
| 29 | + timeout_in_minutes: 30 |
| 30 | + |
| 31 | + - label: "CPUs -- ReverseDiff.jl" |
| 32 | + plugins: |
| 33 | + - JuliaCI/julia#v1: |
| 34 | + version: "1.10" |
| 35 | + agents: |
| 36 | + queue: "juliaecosystem" |
| 37 | + os: "linux" |
| 38 | + arch: "x86_64" |
| 39 | + command: | |
| 40 | + julia --color=yes --project -e ' |
| 41 | + using Pkg |
| 42 | + Pkg.add("OptimizationProblems") |
| 43 | + Pkg.add("ReverseDiff") |
| 44 | + Pkg.instantiate() |
| 45 | + include("test/backend/ReverseDiff.jl")' |
| 46 | + timeout_in_minutes: 30 |
| 47 | + |
| 48 | + - label: "CPUs -- Enzyme.jl" |
| 49 | + plugins: |
| 50 | + - JuliaCI/julia#v1: |
| 51 | + version: "1.10" |
| 52 | + agents: |
| 53 | + queue: "juliaecosystem" |
| 54 | + os: "linux" |
| 55 | + arch: "x86_64" |
| 56 | + command: | |
| 57 | + julia --color=yes --project -e ' |
| 58 | + using Pkg |
| 59 | + Pkg.add("OptimizationProblems") |
| 60 | + Pkg.add("Enzyme") |
| 61 | + Pkg.instantiate() |
| 62 | + include("test/backend/Enzyme.jl")' |
| 63 | + timeout_in_minutes: 30 |
| 64 | + |
| 65 | + - label: "CPUs -- Zygote.jl" |
| 66 | + plugins: |
| 67 | + - JuliaCI/julia#v1: |
| 68 | + version: "1.10" |
| 69 | + agents: |
| 70 | + queue: "juliaecosystem" |
| 71 | + os: "linux" |
| 72 | + arch: "x86_64" |
| 73 | + command: | |
| 74 | + julia --color=yes --project -e ' |
| 75 | + using Pkg |
| 76 | + Pkg.add("OptimizationProblems") |
| 77 | + Pkg.add("Zygote") |
| 78 | + Pkg.instantiate() |
| 79 | + include("test/backend/Zygote.jl")' |
| 80 | + timeout_in_minutes: 30 |
| 81 | + |
| 82 | + - label: "CPUs -- Mooncake.jl" |
| 83 | + plugins: |
| 84 | + - JuliaCI/julia#v1: |
| 85 | + version: "1.10" |
| 86 | + agents: |
| 87 | + queue: "juliaecosystem" |
| 88 | + os: "linux" |
| 89 | + arch: "x86_64" |
| 90 | + command: | |
| 91 | + julia --color=yes --project -e ' |
| 92 | + using Pkg |
| 93 | + Pkg.add("OptimizationProblems") |
| 94 | + Pkg.add("Mooncake") |
| 95 | + Pkg.instantiate() |
| 96 | + include("test/backend/Mooncake.jl")' |
| 97 | + timeout_in_minutes: 30 |
| 98 | + |
| 99 | + - label: "CPUs -- Diffractor.jl" |
| 100 | + plugins: |
| 101 | + - JuliaCI/julia#v1: |
| 102 | + version: "1.10" |
| 103 | + agents: |
| 104 | + queue: "juliaecosystem" |
| 105 | + os: "linux" |
| 106 | + arch: "x86_64" |
| 107 | + command: | |
| 108 | + julia --color=yes --project -e ' |
| 109 | + using Pkg |
| 110 | + Pkg.add("OptimizationProblems") |
| 111 | + Pkg.add("Diffractor") |
| 112 | + Pkg.instantiate() |
| 113 | + include("test/backend/Diffractor.jl")' |
| 114 | + timeout_in_minutes: 30 |
| 115 | + |
| 116 | + - label: "CPUs -- Tracker.jl" |
| 117 | + plugins: |
| 118 | + - JuliaCI/julia#v1: |
| 119 | + version: "1.10" |
| 120 | + agents: |
| 121 | + queue: "juliaecosystem" |
| 122 | + os: "linux" |
| 123 | + arch: "x86_64" |
| 124 | + command: | |
| 125 | + julia --color=yes --project -e ' |
| 126 | + using Pkg |
| 127 | + Pkg.add("OptimizationProblems") |
| 128 | + Pkg.add("Tracker") |
| 129 | + Pkg.instantiate() |
| 130 | + include("test/backend/Tracker.jl")' |
| 131 | + timeout_in_minutes: 30 |
| 132 | + |
| 133 | + - label: "CPUs -- Symbolics.jl" |
| 134 | + plugins: |
| 135 | + - JuliaCI/julia#v1: |
| 136 | + version: "1.10" |
| 137 | + agents: |
| 138 | + queue: "juliaecosystem" |
| 139 | + os: "linux" |
| 140 | + arch: "x86_64" |
| 141 | + command: | |
| 142 | + julia --color=yes --project -e ' |
| 143 | + using Pkg |
| 144 | + Pkg.add("OptimizationProblems") |
| 145 | + Pkg.add("Symbolics") |
| 146 | + Pkg.instantiate() |
| 147 | + include("test/backend/Symbolics.jl")' |
| 148 | + timeout_in_minutes: 30 |
| 149 | + |
| 150 | + - label: "CPUs -- ChainRules.jl" |
| 151 | + plugins: |
| 152 | + - JuliaCI/julia#v1: |
| 153 | + version: "1.10" |
| 154 | + agents: |
| 155 | + queue: "juliaecosystem" |
| 156 | + os: "linux" |
| 157 | + arch: "x86_64" |
| 158 | + command: | |
| 159 | + julia --color=yes --project -e ' |
| 160 | + using Pkg |
| 161 | + Pkg.add("OptimizationProblems") |
| 162 | + Pkg.add("ChainRules") |
| 163 | + Pkg.instantiate() |
| 164 | + include("test/backend/ChainRules.jl")' |
| 165 | + timeout_in_minutes: 30 |
| 166 | + |
| 167 | + - label: "CPUs -- FastDifferentiation.jl" |
| 168 | + plugins: |
| 169 | + - JuliaCI/julia#v1: |
| 170 | + version: "1.10" |
| 171 | + agents: |
| 172 | + queue: "juliaecosystem" |
| 173 | + os: "linux" |
| 174 | + arch: "x86_64" |
| 175 | + command: | |
| 176 | + julia --color=yes --project -e ' |
| 177 | + using Pkg |
| 178 | + Pkg.add("OptimizationProblems") |
| 179 | + Pkg.add("FastDifferentiation") |
| 180 | + Pkg.instantiate() |
| 181 | + include("test/backend/FastDifferentiation.jl")' |
| 182 | + timeout_in_minutes: 30 |
| 183 | + |
| 184 | + - label: "CPUs -- FiniteDiff.jl" |
| 185 | + plugins: |
| 186 | + - JuliaCI/julia#v1: |
| 187 | + version: "1.10" |
| 188 | + agents: |
| 189 | + queue: "juliaecosystem" |
| 190 | + os: "linux" |
| 191 | + arch: "x86_64" |
| 192 | + command: | |
| 193 | + julia --color=yes --project -e ' |
| 194 | + using Pkg |
| 195 | + Pkg.add("OptimizationProblems") |
| 196 | + Pkg.add("FiniteDiff") |
| 197 | + Pkg.instantiate() |
| 198 | + include("test/backend/FiniteDiff.jl")' |
| 199 | + timeout_in_minutes: 30 |
| 200 | + |
| 201 | + - label: "CPUs -- FiniteDifferences.jl" |
| 202 | + plugins: |
| 203 | + - JuliaCI/julia#v1: |
| 204 | + version: "1.10" |
| 205 | + agents: |
| 206 | + queue: "juliaecosystem" |
| 207 | + os: "linux" |
| 208 | + arch: "x86_64" |
| 209 | + command: | |
| 210 | + julia --color=yes --project -e ' |
| 211 | + using Pkg |
| 212 | + Pkg.add("OptimizationProblems") |
| 213 | + Pkg.add("FiniteDifferences") |
| 214 | + Pkg.instantiate() |
| 215 | + include("test/backend/FiniteDifferences.jl")' |
| 216 | + timeout_in_minutes: 30 |
| 217 | + |
| 218 | + - label: "CPUs -- PolyesterForwardDiff.jl" |
| 219 | + plugins: |
| 220 | + - JuliaCI/julia#v1: |
| 221 | + version: "1.10" |
| 222 | + agents: |
| 223 | + queue: "juliaecosystem" |
| 224 | + os: "linux" |
| 225 | + arch: "x86_64" |
| 226 | + command: | |
| 227 | + julia --color=yes --project -e ' |
| 228 | + using Pkg |
| 229 | + Pkg.add("OptimizationProblems") |
| 230 | + Pkg.add("PolyesterForwardDiff") |
| 231 | + Pkg.instantiate() |
| 232 | + include("test/backend/PolyesterForwardDiff.jl")' |
0 commit comments