- Jan 26, 2017
-
-
Kenneth Moreland authored
-
Kenneth Moreland authored
This allows source files to use the VTK-m version. Note that Configure.h does not include the version. This is intentional. First, I don't want the entirety of VTK-m to recompile every time the version is updated (which is every time a commit happens in git). Second, it is important that external project source files be able to get the VTK-m version without actually loading any VTK-m code.
-
Kenneth Moreland authored
I don't trust myself to not forget.
-
Kenneth Moreland authored
In addition to keeping the version number accurate, this will help us differentiate between-the-numbers commits.
-
- Jan 25, 2017
-
-
c6fdceaf Fix an error in the clip tables Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Sujin Philip <sujin.philip@kitware.com> Merge-request: !669
-
7b165842 Fixing documentation typo Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !670
-
Andrew Bauer authored
-
- Jan 24, 2017
-
-
Kenneth Moreland authored
There was an error in the clip tables for clipping lines. It was referring to edge 1 for one of the case, but of course a line has only 1 edge at index 0. Fix the error in the clipping table and also add a check for if we get an index to an invalid line.
-
2c916780 Reduce the amount of output the UnitTestHistogramFilter generates Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !668
-
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
-