Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable Vern6 and Vern9 tests on Haswell CPUs #101

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions test/lazy_interpolants.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ include("common.jl")

sol2 = solve(prob_notinplace, MethodOfSteps(Vern6()))

@test sol.t ≈ sol2.t && sol[1, :] ≈ sol2.u
# fails on Haswell CPUs: https://github.com/JuliaDiffEq/DelayDiffEq.jl/issues/97
Sys.CPU_NAME == "haswell" || @test sol.t ≈ sol2.t && sol[1, :] ≈ sol2.u
end

# Vern7
Expand Down Expand Up @@ -54,7 +55,8 @@ include("common.jl")

sol2 = solve(prob_notinplace, MethodOfSteps(Vern9()))

@test sol.t ≈ sol2.t && sol[1, :] ≈ sol2.u
# fails on Haswell CPUs: https://github.com/JuliaDiffEq/DelayDiffEq.jl/issues/97
Sys.CPU_NAME == "haswell" || @test sol.t ≈ sol2.t && sol[1, :] ≈ sol2.u
end
end

Expand Down