Skip to content

Commit 28b1ff4

Browse files
authored
Move CUSTATEVEC and CUTENSORNET into lib/ (#1478)
1 parent 0a46a13 commit 28b1ff4

19 files changed

+6
-30
lines changed

.buildkite/pipeline.yml

Lines changed: 6 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -196,33 +196,10 @@ steps:
196196
build.branch =~ /^master$$/
197197
timeout_in_minutes: 240
198198

199-
- label: "CUSTATEVEC"
200-
plugins:
201-
- JuliaCI/julia#v1:
202-
version: 1.6
203-
- JuliaCI/julia-coverage#v1:
204-
codecov: true
205-
dirs:
206-
- src
207-
- lib
208-
- examples
209-
agents:
210-
queue: "juliagpu"
211-
cuda: "11.0"
212-
cap: "sm_80"
213-
env:
214-
JULIA_CUDA_VERSION: '11.6'
215-
JULIA_CUDA_USE_BINARYBUILDER: 'true'
216-
PACKAGE: 'CUSTATEVEC'
217-
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
218-
timeout_in_minutes: 120
219-
commands: |
220-
julia -e 'import Pkg; Pkg.develop(; path = pwd())' # CUDA
221-
julia -e 'import Pkg; Pkg.develop(; path = joinpath(pwd(), ENV["PACKAGE"]))' # CUSTATEVEC
222-
julia -e 'import Pkg; Pkg.precompile()'
223-
julia -e 'import Pkg; Pkg.test(ENV["PACKAGE"])'
224-
225-
- label: "CUTENSORNET"
199+
- label: "SubPackage -- {{matrix}}"
200+
matrix:
201+
- "CUSTATEVEC"
202+
- "CUTENSORNET"
226203
plugins:
227204
- JuliaCI/julia#v1:
228205
version: 1.6
@@ -239,16 +216,15 @@ steps:
239216
env:
240217
JULIA_CUDA_VERSION: '11.6'
241218
JULIA_CUDA_USE_BINARYBUILDER: 'true'
242-
PACKAGE: 'CUTENSORNET'
219+
PACKAGE: '{{matrix}}'
243220
if: build.message !~ /\[skip tests\]/ && !build.pull_request.draft
244221
timeout_in_minutes: 120
245222
commands: |
246223
julia -e 'import Pkg; Pkg.develop(; path = pwd())' # CUDA
247-
julia -e 'import Pkg; Pkg.develop(; path = joinpath(pwd(), ENV["PACKAGE"]))' # CUSTATEVEC
224+
julia -e 'import Pkg; Pkg.develop(; path = joinpath(pwd(), "lib", ENV["PACKAGE"]))'
248225
julia -e 'import Pkg; Pkg.precompile()'
249226
julia -e 'import Pkg; Pkg.test(ENV["PACKAGE"])'
250227
251-
252228
# other tasks
253229

254230
# we want to benchmark every commit on the master branch, even if it failed CI
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)