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 2828 version :
2929 - ' 1.10'
3030 - ' 1' # automatically expands to the latest stable 1.x release of Julia
31- - ' nightly'
31+ # - 'nightly'
3232 steps :
3333 - uses : actions/checkout@v2
3434 - 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]
113113
114114#= ==== LoopVectorization =====#
115115
116+ if VERSION < v " 1.11-" # LV does not support 1.11
117+
116118t8 = time ()
117119using LoopVectorization
118120using VectorizationBase
@@ -165,6 +167,8 @@ _gradient(x...) = Tracker.gradient(x...)
165167
166168@tullio avx= false
167169
170+ end # if VERSION...
171+
168172#= ==== TensorOperations =====#
169173
170174t9 = 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
2424end
2525
2626if test_group in [" all" , " 1" ]
27+ @info " starting test group 1 (basics)"
2728 include (" group-1.jl" )
2829end
2930
3031if test_group in [" all" , " 2" ]
32+ @info " starting test group 2 (KernelAbstractions etc.)"
3133 include (" group-2.jl" )
3234end
3335
3436if test_group in [" all" , " 3" ]
37+ @info " starting test group 3 (Zygote, LV)"
3538 include (" group-3.jl" )
3639end
You can’t perform that action at this time.
0 commit comments