Skip to content

Commit 9ce0c2c

Browse files
committed
Remove show and temporarilly disable ambiguity test in Julia < 1.6
1 parent 500ae18 commit 9ce0c2c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/broadcast.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -465,9 +465,8 @@ end
465465
bc::Broadcasted, ::Val{Mod}, ::Val{UNROLL}
466466
) where {Mod,UNROLL}
467467
ElType = Base.Broadcast.combine_eltypes(bc.f, bc.args)
468-
@show ElType
469-
dest = similar(bc, ElType)
470-
vmaterialize!(dest, bc, Val{Mod}(), Val{UNROLL}())
468+
dest = similar(bc, ElType)
469+
vmaterialize!(dest, bc, Val{Mod}(), Val{UNROLL}())
471470
end
472471

473472
vmaterialize!(dest, bc, ::Val, ::Val, ::StaticInt, ::StaticInt, ::StaticInt) = Base.Broadcast.materialize!(dest, bc)

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const START_TIME = time()
1414
@time @testset "LoopVectorization.jl" begin
1515

1616
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part1"
17-
@time Aqua.test_all(LoopVectorization)
17+
@time Aqua.test_all(LoopVectorization, ambiguities = VERSION v"1.6")
1818
# @test isempty(detect_unbound_args(LoopVectorization))
1919

2020
@time include("printmethods.jl")

0 commit comments

Comments
 (0)