-
Notifications
You must be signed in to change notification settings - Fork 1
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
Tests stuff to fix mpi error for macos and windows runs #134
base: t8codemesh-fv
Are you sure you want to change the base?
Conversation
Review checklistThis checklist is meant to assist creators of PRs (to let them know what reviewers will typically look for) and reviewers (to guide them in a structured review process). Items do not need to be checked explicitly for a PR to be eligible for merging. Purpose and scope
Code quality
Documentation
Testing
Performance
Verification
Created with ❤️ by the Trixi.jl community. |
# l2=[0.08551397247817498], | ||
# linf=[0.12087467695430498]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
# l2=[0.08551397247817498], | |
# linf=[0.12087467695430498]) | |
# l2=[0.08551397247817498], | |
# linf=[0.12087467695430498]) |
# l2=[0.008142380494734171], | ||
# linf=[0.018687916234976898]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
# l2=[0.008142380494734171], | |
# linf=[0.018687916234976898]) | |
# l2=[0.008142380494734171], | |
# linf=[0.018687916234976898]) |
# l2=[0.5598148317954682], | ||
# linf=[0.6301130236005371]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
# l2=[0.5598148317954682], | |
# linf=[0.6301130236005371]) | |
# l2=[0.5598148317954682], | |
# linf=[0.6301130236005371]) |
# l2=[0.5899077806567905], | ||
# linf=[0.8972489222157533]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
# l2=[0.5899077806567905], | |
# linf=[0.8972489222157533]) | |
# l2=[0.5899077806567905], | |
# linf=[0.8972489222157533]) |
@@ -33,7 +33,7 @@ save_solution = SaveSolutionCallback(interval = 10, | |||
|
|||
stepsize_callback = StepsizeCallback(cfl = 0.5) | |||
|
|||
callbacks = CallbackSet(summary_callback, save_solution, analysis_callback, alive_callback, | |||
callbacks = CallbackSet(#=summary_callback,=# save_solution, #=analysis_callback,=# alive_callback, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JuliaFormatter] reported by reviewdog 🐶
callbacks = CallbackSet(#=summary_callback,=# save_solution, #=analysis_callback,=# alive_callback, | |
callbacks = CallbackSet(save_solution, alive_callback, #=analysis_callback,=# |
It is also a problem in serial runs. It seems to be a problem in the save solution callback.
On windows, the error occurs in t8_forest_write_vtk_ext.
Full error message:
Things I learned:
summay_callback()
,solve()
-> No output, no call ofrhs!
, No errorsrhs!
is still called witht_end=0
-> errorsanalysis_callback
seems to work properlystepsize_callback
seems to work properlyTested:
solve
inelixir_advection_basic.jl
(Expected error forbasic
; but Still the same error forgauss
) errorsolve
inelixir_advection_basic.jl
; sett_end
forgauss
; deactivate all tests for error numbers; deactivatebasic
tests for allocations-> ✔️
basic
runs through; no output except warnings since no solve call. ❌gauss
fails with known errors (althought_end=0
)I just noticed those warnings even for die DG runs on mpi windows:
[t8] WARNING: Trying to use shared memory but intranode and internode communicators are not set. You should call t8_shmem_init before initializing a shared memory array.