File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 28
28
version :
29
29
- ' 1.10'
30
30
- ' 1' # automatically expands to the latest stable 1.x release of Julia
31
- - ' nightly'
31
+ # - 'nightly'
32
32
steps :
33
33
- uses : actions/checkout@v2
34
34
- uses : julia-actions/setup-julia@v1
Original file line number Diff line number Diff line change @@ -113,6 +113,8 @@ _gradient(x...) = Yota.grad(x...)[2]
113
113
114
114
#= ==== LoopVectorization =====#
115
115
116
+ if VERSION < v " 1.11-" # LV does not support 1.11
117
+
116
118
t8 = time ()
117
119
using LoopVectorization
118
120
using VectorizationBase
@@ -165,6 +167,8 @@ _gradient(x...) = Tracker.gradient(x...)
165
167
166
168
@tullio avx= false
167
169
170
+ end # if VERSION...
171
+
168
172
#= ==== TensorOperations =====#
169
173
170
174
t9 = time ()
Original file line number Diff line number Diff line change @@ -24,13 +24,16 @@ macro printline() # useful in hunting for where tests get stuck
24
24
end
25
25
26
26
if test_group in [" all" , " 1" ]
27
+ @info " starting test group 1 (basics)"
27
28
include (" group-1.jl" )
28
29
end
29
30
30
31
if test_group in [" all" , " 2" ]
32
+ @info " starting test group 2 (KernelAbstractions etc.)"
31
33
include (" group-2.jl" )
32
34
end
33
35
34
36
if test_group in [" all" , " 3" ]
37
+ @info " starting test group 3 (Zygote, LV)"
35
38
include (" group-3.jl" )
36
39
end
You can’t perform that action at this time.
0 commit comments