Notes |
|
(0009853)
|
Ken Moreland
|
2007-12-10 18:40
|
|
Also check out parallel regular grids (.pvtr) and parallel structured grids (.pvts). I see similar extent related problems with those. I have example files if you need them. |
|
|
(0010296)
|
Ken Moreland
|
2008-01-24 19:00
|
|
More information: The data set in question happens to be split into 16 parts, and I see both the .pvd and .pvti readers both work fine when run on 16 processes. This leads me to believe that this filter is being far too naive about loading the files. Each process is just loading one file. Ghost cells are also incorrectly handled. |
|
|
(0012557)
|
Kent Eschenberg
|
2008-06-27 11:16
|
|
More information and a very simple test case. This suggests an almost complete failure of the logic in the pvti file reader.
File test8.pvti references test8a.vti (extents 0 1 0 1 0 1) and test8b.vti (extents 1 2 0 1 0 1).
When loaded in the order of pvti, a, b I see image pvti_test2.png. After restarting and loading in order b, a, pvti I see image pvti_test3.png. It looks like all 6 of the displayed objects are wrong. The min value of "temp" is 0 though the values are actually 10 to 24.
This was done using standalone, serial PV on a 32-bit workstation compiled from a download from CVS on June 25 at 4:42pm. |
|
|
(0012602)
|
Berk Geveci
|
2008-07-02 16:19
|
|
NOTE: There are two issues reported here. The one reported by Kent is not a bug. The files test8a.vti and test8b.vti are wrong. In each of the pieces, the WholeExtent and the Piece Extent have to match. The pvti file itself is the only one that should have the actual WholeExtent. So instead of
<VTKFile type="ImageData" version="0.1">
<ImageData
WholeExtent="0 2 0 1 0 1"
Origin="0 0 0"
Spacing="1 1 1"
>
<Piece Extent="0 1 0 1 0 1">
it should be
<VTKFile type="ImageData" version="0.1">
<ImageData
WholeExtent="0 1 0 1 0 1"
Origin="0 0 0"
Spacing="1 1 1"
>
<Piece Extent="0 1 0 1 0 1"> |
|
|
(0016299)
|
Utkarsh Ayachit
|
2009-05-05 15:01
|
|
Reminder sent to: Berk Geveci Berk, do you think you can take a look at this bug? |
|
|
(0017286)
|
Utkarsh Ayachit
|
2009-09-01 14:15
|
|
Tried with 4 server (remote and local render). Didn't produce any errors for me. |
|
|
(0017364)
|
Alan Scott
|
2009-09-09 21:55
|
|
Works for me. Tested with 6 remote servers. |
|