Skip to content

Commit

Permalink
remove LVUsers test
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed May 1, 2024
1 parent d8188a7 commit 51ee029
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 80 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
version:
- '1.6'
- '1' # automatically expands to the latest stable 1.x release of Julia.
- '1.11.0-beta1'
os:
- ubuntu-latest
- macOS-latest
Expand Down
2 changes: 0 additions & 2 deletions test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SnoopCompileCore = "e2b509da-e806-4183-be48-004708413034"
SnoopPrecompile = "66db9d55-30c0-4569-8b51-7e840670fc0c"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
StrideArraysCore = "7792a7ef-975c-4747-a70f-980b88e8d1da"
Expand Down
16 changes: 4 additions & 12 deletions test/grouptests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const START_TIME = time()

@show LoopVectorization.register_count()

@show RUN_SLOW_TESTS
Expand Down Expand Up @@ -100,6 +99,8 @@ const START_TIME = time()
end

@time include("offsetarrays.jl")

@time include("forwarddiffext.jl")
end

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

@time if LOOPVECTORIZATION_TEST == "all" || LOOPVECTORIZATION_TEST == "part6"
cproj = Base.active_project()
precompiledir = joinpath(@__DIR__, "precompile")
Pkg.activate(joinpath(precompiledir, "LVUser"))
@time include(joinpath(precompiledir, "precompile.jl"))
Pkg.activate(cproj)
@time include("forwarddiffext.jl")
end

end

const ELAPSED_MINUTES = (time() - START_TIME) / 60
# @test ELAPSED_MINUTES < 180
@test ELAPSED_MINUTES < 300
@test ELAPSED_MINUTES < 180
# @test ELAPSED_MINUTES < 300
1 change: 0 additions & 1 deletion test/precompile/LVUser/.JuliaFormatter.toml

This file was deleted.

9 changes: 0 additions & 9 deletions test/precompile/LVUser/Project.toml

This file was deleted.

37 changes: 0 additions & 37 deletions test/precompile/LVUser/src/LVUser.jl

This file was deleted.

18 changes: 0 additions & 18 deletions test/precompile/precompile.jl

This file was deleted.

2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ InteractiveUtils.versioninfo(stdout; verbose = true)
const LOOPVECTORIZATION_TEST = get(ENV, "LOOPVECTORIZATION_TEST", "all")

if LOOPVECTORIZATION_TEST == "all"
NUMGROUPS = 6
NUMGROUPS = 5
processes = Vector{Base.Process}(undef, NUMGROUPS)
paths = Vector{String}(undef, NUMGROUPS)
ios = Vector{IOStream}(undef, NUMGROUPS)
Expand Down

0 comments on commit 51ee029

Please sign in to comment.