Skip to content

Commit e1d951d

Browse files
committed
8->5 test groups
1 parent 0b4ef95 commit e1d951d

File tree

3 files changed

+16
-27
lines changed

3 files changed

+16
-27
lines changed

.github/workflows/ci-julia-nightly.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ jobs:
3838
- part3
3939
- part4
4040
- part5
41-
- part6
42-
- part7
43-
- part8
4441
steps:
4542
- uses: actions/checkout@v2
4643
- uses: julia-actions/setup-julia@v1

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ jobs:
3939
- part3
4040
- part4
4141
- part5
42-
- part6
43-
- part7
44-
- part8
4542
steps:
4643
- uses: actions/checkout@v2
4744
- uses: julia-actions/setup-julia@v1

test/grouptests.jl

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ const START_TIME = time()
4747
@time include("manyloopreductions.jl")
4848

4949
@time include("simplemisc.jl")
50+
51+
@time include("ifelsemasks.jl")
52+
53+
@time include("gemv.jl")
54+
55+
@time include("dot.jl")
56+
57+
@time include("special.jl")
58+
59+
@time include("mapreduce.jl")
5060
end
5161

5262
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part3"
@@ -55,7 +65,11 @@ const START_TIME = time()
5565
@time include("miscellaneous.jl")
5666

5767
@time include("copy.jl")
58-
end
68+
69+
@time include("tensors.jl")
70+
71+
@time include("staticsize.jl")
72+
end
5973

6074
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part4"
6175
@time include("threading.jl")
@@ -71,33 +85,14 @@ const START_TIME = time()
7185
if VERSION v"1.6"
7286
@time include("quantum.jl")
7387
end
74-
end
7588

76-
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part5"
7789
@time include("offsetarrays.jl")
7890
end
7991

80-
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part6"
92+
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part5"
8193
@time include("gemm.jl")
8294
end
8395

84-
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part7"
85-
@time include("tensors.jl")
86-
87-
@time include("staticsize.jl")
88-
end
89-
90-
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part8"
91-
@time include("ifelsemasks.jl")
92-
93-
@time include("gemv.jl")
94-
95-
@time include("dot.jl")
96-
97-
@time include("special.jl")
98-
99-
@time include("mapreduce.jl")
100-
end
10196
end
10297

10398
const ELAPSED_MINUTES = (time() - START_TIME)/60

0 commit comments

Comments
 (0)