Skip to content

Commit 81365dd

Browse files
committed
move gpu test files
1 parent 12a3cda commit 81365dd

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.buildkite/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ steps:
99
- "src/**"
1010
- "ext/QuantumToolboxCUDAExt.jl"
1111
- "test/runtests.jl"
12-
- "test/ext-test/gpu/cuda/**"
12+
- "test/ext-test/cuda/**"
1313
- "Project.toml"
1414
target: ".buildkite/CUDA_Ext.yml"
1515
- staticfloat/forerunner: # Metal.jl tests
@@ -19,7 +19,7 @@ steps:
1919
- "src/**"
2020
- "ext/QuantumToolboxMetalExt.jl"
2121
- "test/runtests.jl"
22-
- "test/ext-test/gpu/metal/**"
22+
- "test/ext-test/metal/**"
2323
- "Project.toml"
2424
target: ".buildkite/Metal_Ext.yml"
2525
agents:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/runtests.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const GROUP = get(ENV, "GROUP", "All")
66
const testdir = dirname(@__FILE__)
77

88
# Put core tests in alphabetical order
9-
#= core_tests = [
9+
core_tests = [
1010
"block_diagonal_form.jl",
1111
"correlations_and_spectrum.jl",
1212
"dynamical_fock_dimension_mesolve.jl",
@@ -59,7 +59,7 @@ if (GROUP == "CairoMakie_Ext")# || (GROUP == "All")
5959
end
6060

6161
if (GROUP == "CUDA_Ext")# || (GROUP == "All")
62-
Pkg.activate("ext-test/gpu/cuda")
62+
Pkg.activate("ext-test/cuda")
6363
Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
6464
Pkg.instantiate()
6565

@@ -71,11 +71,11 @@ if (GROUP == "CUDA_Ext")# || (GROUP == "All")
7171
QuantumToolbox.about()
7272
CUDA.versioninfo()
7373

74-
include(joinpath(testdir, "ext-test", "gpu", "cuda", "cuda_ext.jl"))
75-
end =#
74+
include(joinpath(testdir, "ext-test", "cuda", "cuda_ext.jl"))
75+
end
7676

77-
if (GROUP == "Metal_Ext") || (GROUP == "All")
78-
Pkg.activate("ext-test/gpu/metal")
77+
if (GROUP == "Metal_Ext")# || (GROUP == "All")
78+
Pkg.activate("ext-test/metal")
7979
Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
8080
Pkg.instantiate()
8181

@@ -86,5 +86,5 @@ if (GROUP == "Metal_Ext") || (GROUP == "All")
8686
QuantumToolbox.about()
8787
Metal.versioninfo()
8888

89-
include(joinpath(testdir, "ext-test", "gpu", "metal", "metal_ext.jl"))
89+
include(joinpath(testdir, "ext-test", "metal", "metal_ext.jl"))
9090
end

0 commit comments

Comments
 (0)