- 23 Sep, 2021 5 commits
-
-
Corey Wetterer-Nelson authored
-
00b2aede probeLine: fix precision error for limit points Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Acked-by:
Tiffany Chhim <tiffany.chhim@kitware.com> Merge-request: !8440
-
f86496f6 Ghost cells generator: speeding up point fetching Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !8438
-
Timothee Chabat authored
Also fix some compilation warnings
-
Kitware Robot authored
-
- 22 Sep, 2021 5 commits
-
-
Yohann Bearzi authored
In the several instances where point locators are being used, `FindClosestPoint` was used instead of `FindClosestPointWithinRadius`, which is faster. We really want to have a perfect match between points, so there is no reason to not use the faster version. Adresses paraview/paraview#20926
-
f8412719 Ghost cells generator: bug fix when input ghosts are present Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !8435
-
Yohann Bearzi authored
* In the presence of ghost cells in the input, the ghost cells generator generates maps so one can know the point id in the input given a point in the output. This remapping was missing for the points at the interface between 2 adjacent partitions. * The naming of the cell id / point id map was wrong. `InputToOutput` should have been named `OutputToInput` as we are fetching points from the input using the id in the output. An instance of `InpputToOutput` was however necessary for point ids, so it also has been added. * A potential bug fix has been resolved. This should not have been a problem as if all the points to be peeled off in the input are at the end of the point array, then the bug was not triggered. A point remapping from the input to the output was needed when deep copying input cells into the output. `InputToOutputPointIdRedirectionMap` is used for this case. * Input unstructured grids could have a non nullptr `Faces` and `FaceLocations` empty array. The filter was only checking for `nullptr` on those. A check on the number of values has beend added * Testing is being update to check for distorted cells in the output. Addresses paraview/paraview#20906
-
935cb197 Add changelog b440769c vtkParallelVectors: Interpolate input's field variables Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !8433
-
Kitware Robot authored
-
- 21 Sep, 2021 10 commits
-
-
82f25ed1 add vector variables to AMReXGridReader Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !8405
-
Spiros Tsalikis authored
-
Spiros Tsalikis authored
-
26c5b92b vtkVRHardwarePicker: add missing semicolon Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Acked-by:
Paul Lafoix <paul.lafoix@kitware.com> Merge-request: !8432
-
Ben Boeckel authored
This makes the formatting for the file behave more regularly.
-
7305636f Improve documentation and fix wrong header comment. 957c5c08 Fix const issue with Windows build. 9432ef22 Add tests for Temporal Path Line Filter. 4cd51559 Change int properties to boolean and simplify code. d95aeb46 Add release documentation. d265c75c Removing initialization in header to avoid add useless dependent headers. 11132005 Move member initialization in header file. 6c713abe Update accessor description. ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Acked-by:
Timothee Chabat <timothee.chabat@kitware.com> Merge-request: !8406
-
bbc4ef1d Ghost cells generator: kdtree point locator Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !8431
-
e4381f80 Merge branch 'upstream-KWSys' into update_kwsys_2021_09_20 506f436d KWSys 2021-09-15 (2c4a8330) Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Laurent Malka <laurent.malka@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !8426
-
Francois Mazen authored
-
Kitware Robot authored
-
- 20 Sep, 2021 14 commits
-
-
ea14e952 vtkSMP: move preprocessor definitions into a header Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Thompson <david.thompson@kitware.com> Merge-request: !8430
-
Yohann Bearzi authored
In the unstructured data subroutine, a `vtkStaticPointLocator` was used to match interfacing points with points sent by neighbors. In the instance of unstructured grids with a lot of discrepencies in point density over the data set, this point locator could become extremely slow. This is because the static point locator uses cubic buckets and brute-force search inside the bucket in which the query point is. In the instance of querying in a bucket with high resolution data, the search is very slow. To speed up the filter for this case scenario, `vtkStaticPointLocator` is replaced by `vtkKdTreePointLocator`. Addresses paraview/paraview#20926
-
f2d233c9 Ghost cells generator: multiblock input bug fix Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !8429
-
Yohann Bearzi authored
`vtkGhostCellsGenerator` was not iterating over input data set correctly when instantiating output data sets if the input was a `vtkMultiBlockDataSet` with more than one depth of data sets.
-
97b61db5 ci: exclude TestTemporalInterpolator on stdthread builds Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8425
-
Ben Boeckel authored
Instead of having SMP selections affect every consumer of `VTK::CommonCore` need recompilation due to the changed `-D` flags, put them into a header to narrow the effects to code which actually needs to know about SMP selection changes.
-
Francois Mazen authored
-
ae108b61 Revert "Be explicit when importing _vtkmodules_static" Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !8428
-
Utkarsh Ayachit authored
This reverts commit 7edb2f42. This fix is incorrect since it ends up importing the _vtkmodules_static shared library even when the module is being imported in a static `vtkpython` executable, which already has setup the static import callbacks. _vtkmodules_static is only need when the `import vtk` is called from a standard Python interpreter and not `vtkpython` the `if ...` guard tested that case.
-
c123398d vtIOSSReader: address signed/unsigned comparison warnings c6921526 use static_cast to resolve signed/unsigned comparison warning fa226d1d Resolve unused capture and parameter warnings Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !8378
-
Mathieu Westphal authored
# By KWSys Upstream * upstream-KWSys: KWSys 2021-09-15 (2c4a8330)
-
Code extracted from: https://gitlab.kitware.com/utils/kwsys.git at commit 2c4a83304e08c3e5e17d400315d6f1253f1f7bbc (master). Upstream Shortlog ----------------- Laurent Malka (1): 6ccbfc12 SystemTools: Add a Join function ulatekh (1): 4ef5b106 SystemTools: Ensure Windows Vista APIs are available before using them
-
ccbe9e1c Fixes vtk/vtk#18298 Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !8374
-
Kitware Robot authored
-
- 19 Sep, 2021 6 commits
-
-
d7911784 TestCONVERGECFDReader.cxx: update for new output type d46fe187 vtkCONVERGECFDReader: change output type to vtkPartitionedDataSetCollection Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !8423
-
387d18bb ExerciseMultiProcessController: test PDC 8dfc0c80 vtkCommunicator: support PDC and PD b5cca944 vtkGenericDataObjectReader: fix PDC output Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !8424
-
Ben Boeckel authored
It's the only place it fails and there it is with a timeout.
-
Utkarsh Ayachit authored
ExerciseMultiProcessController now tests transfering vtkPartitionedDataSetCollection as well.
-
Utkarsh Ayachit authored
vtkCommunicator marshall / unmarshall methods needed cases for handling vtkPartitionedDataSet and vtkPartitionedDataSetCollection.
-
Utkarsh Ayachit authored
Due to incorrect order of string compares, the reader was ending up createing vtkPartitionedDataSet output when reading vtkPartitionedDataSetCollection files. Fixed that.
-