Skip to content

Commit c3cf714

Browse files
committed
tweak tests
1 parent 183d02f commit c3cf714

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
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

test/group-3.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
116118
t8 = time()
117119
using LoopVectorization
118120
using VectorizationBase
@@ -165,6 +167,8 @@ _gradient(x...) = Tracker.gradient(x...)
165167

166168
@tullio avx=false
167169

170+
end # if VERSION...
171+
168172
#===== TensorOperations =====#
169173

170174
t9 = time()

test/runtests.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,16 @@ macro printline() # useful in hunting for where tests get stuck
2424
end
2525

2626
if test_group in ["all", "1"]
27+
@info "starting test group 1 (basics)"
2728
include("group-1.jl")
2829
end
2930

3031
if test_group in ["all", "2"]
32+
@info "starting test group 2 (KernelAbstractions etc.)"
3133
include("group-2.jl")
3234
end
3335

3436
if test_group in ["all", "3"]
37+
@info "starting test group 3 (Zygote, LV)"
3538
include("group-3.jl")
3639
end

0 commit comments

Comments
 (0)