-
Notifications
You must be signed in to change notification settings - Fork 78
Fix check for invalid number of vtk sample points #2046
Conversation
I'm afraid I tried running
(this is with the |
This error doesn't show up with 1 or 2 ranks, but happens at 32 ranks (but not on all the ranks):
Any idea what could be happening @jkozdon? |
This is with |
I believe so.
I believe it happens pretty early in the run, so using |
Thanks. Will take a look and see if I can sort it out. |
edad4c8
to
e57794b
Compare
I haven't forgotten about this. The issue is that when you run with 32 ranks, you have some ranks with no elements. This is what is breaking the VTK. Still need to test everything. |
OK. I think we might need an upstream fix... Will do some testing and open up an issue on |
Nevermind about the upstream fix for now. There is some more fundamental issue. When I run with 25 ranks which is fine in terms of having elements on all ranks, the VTK in paraview output suggests the data is garbage... |
So I get weird data if I run:
on master. I get what's looks like garbage in paraview for I'm not sure where the problem is though, or why this is happening (e.g., is it something in the VTK or the simulation). |
The number of vtk sample points should be either
0
(meaning use the LGL grid) or>= 2
(meaning use specified number of equally spaced points)closes #2045