Skip to content

Commit 51ee029

Browse files
committed
remove LVUsers test
1 parent d8188a7 commit 51ee029

File tree

8 files changed

+6
-80
lines changed

8 files changed

+6
-80
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
version:
2828
- '1.6'
2929
- '1' # automatically expands to the latest stable 1.x release of Julia.
30+
- '1.11.0-beta1'
3031
os:
3132
- ubuntu-latest
3233
- macOS-latest

test/Project.toml

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
1111
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
1212
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
1313
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
14-
SnoopCompileCore = "e2b509da-e806-4183-be48-004708413034"
15-
SnoopPrecompile = "66db9d55-30c0-4569-8b51-7e840670fc0c"
1614
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
1715
Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
1816
StrideArraysCore = "7792a7ef-975c-4747-a70f-980b88e8d1da"

test/grouptests.jl

+4-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const START_TIME = time()
2-
32
@show LoopVectorization.register_count()
43

54
@show RUN_SLOW_TESTS
@@ -100,6 +99,8 @@ const START_TIME = time()
10099
end
101100

102101
@time include("offsetarrays.jl")
102+
103+
@time include("forwarddiffext.jl")
103104
end
104105

105106
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part5"
@@ -110,17 +111,8 @@ const START_TIME = time()
110111
@time include("inner_reductions.jl")
111112
end
112113

113-
@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part6"
114-
cproj = Base.active_project()
115-
precompiledir = joinpath(@__DIR__, "precompile")
116-
Pkg.activate(joinpath(precompiledir, "LVUser"))
117-
@time include(joinpath(precompiledir, "precompile.jl"))
118-
Pkg.activate(cproj)
119-
@time include("forwarddiffext.jl")
120-
end
121-
122114
end
123115

124116
const ELAPSED_MINUTES = (time() - START_TIME) / 60
125-
# @test ELAPSED_MINUTES < 180
126-
@test ELAPSED_MINUTES < 300
117+
@test ELAPSED_MINUTES < 180
118+
# @test ELAPSED_MINUTES < 300

test/precompile/LVUser/.JuliaFormatter.toml

-1
This file was deleted.

test/precompile/LVUser/Project.toml

-9
This file was deleted.

test/precompile/LVUser/src/LVUser.jl

-37
This file was deleted.

test/precompile/precompile.jl

-18
This file was deleted.

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ InteractiveUtils.versioninfo(stdout; verbose = true)
77
const LOOPVECTORIZATION_TEST = get(ENV, "LOOPVECTORIZATION_TEST", "all")
88

99
if LOOPVECTORIZATION_TEST == "all"
10-
NUMGROUPS = 6
10+
NUMGROUPS = 5
1111
processes = Vector{Base.Process}(undef, NUMGROUPS)
1212
paths = Vector{String}(undef, NUMGROUPS)
1313
ios = Vector{IOStream}(undef, NUMGROUPS)

0 commit comments

Comments
 (0)