- Jan 24, 2017
-
-
Robert Maynard authored
It was producing about 40MB of output when saved by cdash/buildbot so lets reduce that and make web pages load again.
-
- Jan 23, 2017
-
-
5004e64c Fix CleanGrid when compact point fields is off Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !665
-
5fed7dda Fix compile issue on windows Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !664
-
Robert Maynard authored
Reduce amount of weak vtables See merge request !612
-
- Jan 19, 2017
-
-
Kenneth Moreland authored
Reduce by Key Worklet Type See merge request !645
-
Kenneth Moreland authored
A variable length array declaration was used. That is not part of the official C++11 standard and is not supported on all compilers.
-
Kenneth Moreland authored
There was an error in the CleanGrid filter where if the CompactPointFields flag was off it would still try to compact the point coordinates. Add an extra check so that the coordinate systems are just passed when this flag is off.
-
Robert Maynard authored
-
- Jan 18, 2017
-
-
4d1da547 Fix ArrayHandleZip::PrepareForInPlace Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !660
-
- Jan 17, 2017
-
-
Kenneth Moreland authored
-
Kenneth Moreland authored
There was a static assert in a templated function that was never supposed to be used. Some compilers were fine as long as there was no use of the templated function, but others errored out anyway. Change the implementation to use the =delete keyword instead. This won't have as nice of an error message, but you would have to jump through some hoops to get to this point anyway. If this still does not work, we could just probably remove the invalid templated function. The compiler error would get even more obfuscated, but again I don't expect anyone to actually run into it.
-
Kenneth Moreland authored
-
Kenneth Moreland authored
-
Kenneth Moreland authored
This lets you give arrays of values paired with the keys that will be grouped into (hopefully) small Vecs.
-
Kenneth Moreland authored
And the basic type for a reduce by key worklet and its associated adapter. Right now the worklet only supports passing in keys. Values come next.
-
Kenneth Moreland authored
This class will manage the keys during a reduce-by-key worklet execution.
-
Kenneth Moreland authored
The implementation was calling PrepareForOutput on the delegate arrays rather than PrepareForInPlace, do when used with CUDA you did not get the data on the device. Also added a regression test to check this.
-
Robert Maynard authored
Contour tree See merge request !658
-
- Jan 16, 2017
-
-
Robert Maynard authored
-
Robert Maynard authored
-
Robert Maynard authored
-
Robert Maynard authored
-
Robert Maynard authored
To help reduce compile and library size the vtkm_cont library now holds common instantiations.
-
Robert Maynard authored
This reduces the number of weak vtables vtkm generates, resulting in a reduction of binary sizes for projects that include vtkm classes in multiple translation units.
-
Robert Maynard authored
Class that need to be passed across dynamic library boundaries such as DynamicArrayHandle need to be properly export. One of 'tricks' of this is that templated classes such as PolymorphicArrayHandleContainer need the Type and Storage types to have public visibility. This makes sure that all vtkm storage tags have public visibility so in the future we can transfer dynamic array handles across libraries.
-
Robert Maynard authored
-
Robert Maynard authored
These are designed so that we can safely export template classes from multiple dynamic libraries and have them all resolve to the same type at runtime
-
Robert Maynard authored
-
- Jan 12, 2017
-
-
713cf422 Make it not possible to create a cell set without specifying num points Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !644
-
Patricia Kroll Fasel - 090207 authored
-
Patricia Kroll Fasel - 090207 authored
-
Patricia Kroll Fasel - 090207 authored
Make all non-templated PrintVectors methods inline
-
Kenneth Moreland authored
The CellSetExplicit and CellSetSingleType classes have an ivar that marks the number of points. There were several instances of code creating cell sets without specifying the number of points. This can be very bad if subsequent code needs that information.
-
Patricia Kroll Fasel - 090207 authored
non-templated code it contains causing doubly defineds.
-
Patricia Kroll Fasel - 090207 authored
Remove worklet/contourtree/PrintVectors.h from CMakeLists.txt.
-
35585f39 Correct a bug in tbb scan exclusive that was found using tbb 2017. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !652
-
- Jan 11, 2017
-
-
Patricia Kroll Fasel - 090207 authored
-
Robert Maynard authored
Fix warnings on GCC6. See merge request !656
-
4a9b8b6f Inherit std::exception in vtkm::cont::Error. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !655
-
Robert Maynard authored
-