- 11 Dec, 2015 4 commits
- 08 Dec, 2015 1 commit
-
-
dpugmire authored
Also, mark them as valid, when valid.
-
- 04 Dec, 2015 1 commit
-
-
dpugmire authored
-
- 02 Dec, 2015 1 commit
-
-
dpugmire authored
-
- 01 Dec, 2015 6 commits
-
-
dpugmire authored
-
dpugmire authored
It consists of 3 ArrayHandles, and handles indexing to give each point in the grid. Added some examples to the test dataset class, and a basic test.
-
Dave Pugmire authored
-
Dave Pugmire authored
-
Dave Pugmire authored
-
dpugmire authored
It consists of 3 ArrayHandles, and handles indexing to give each point in the grid. Added some examples to the test dataset class, and a basic test.
-
- 30 Nov, 2015 3 commits
-
-
Kenneth Moreland authored
Fix streamline example warnings See merge request !278
-
Kenneth Moreland authored
When a C++ object is constructed, the fields (ivars) of that object are initialized in the order they are declared in the structure regardless of the order of initializers listed in the constructor. Thus, it is good C++ convention to list the initializers of the constructor in the same order they are declared in the class so that there is no confusion about the order of initialization (which can matter if there are any dependencies). To help enforce this convention, some compilers warn if the order does not match. This commit fixes that issue. This commit also removes trailing whitespace at the end of some lines in StreamLineUniformGrid.h. My editor does this automatically because trailing whitespace bugs some programmers.
-
Kenneth Moreland authored
vtkm::Id is a signed integer whereas size_t used by standard C++ functions is unsigned. It doesn't matter, but compilers like to complain about it. Make any such conversions explicit.
-
- 27 Nov, 2015 1 commit
-
-
4ceb111a Enable vectorization inside the Serial and TBB backends. 514ea09a Teach VTK-m how to enable vectorization for gcc, clang, and icc. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !275
-
- 25 Nov, 2015 1 commit
-
-
Robert Maynard authored
-
- 24 Nov, 2015 3 commits
-
-
066e1bf3 Convert unsupported cell types to supported types Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !273
-
Sujin Philip authored
-
6c4fb856 Add example data file for streamline. cba0e218 Verify unit test results 3946b0c4 Add unit test, pass all args in Run() 09e43778 Merge branch 'master' of gitlab.kitware.com:Fasel/vtk-m into streamline 02f84a19 StreamLine filter outputs dataset. Add example. 34cc9719 StreamLine particle tracing returns output dataset. e34aaa02 Merge branch 'master' of gitlab.kitware.com:Fasel/vtk-m into streamline 82d9c102 Pass input and output datasets and not arrays. Support FORWARD, BACKWARD and BOTH. ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !267
-
- 23 Nov, 2015 7 commits
-
-
Patricia Kroll Fasel - 090207 authored
-
Patricia Kroll Fasel - 090207 authored
-
Patricia Kroll Fasel - 090207 authored
-
Patricia Kroll Fasel - 090207 authored
-
Patricia Kroll Fasel - 090207 authored
-
Patricia Kroll Fasel - 090207 authored
-
Robert Maynard authored
-
- 20 Nov, 2015 3 commits
-
-
8dca9f5f Fix case in reference to UseVTKmCUDA.cmake. 5a4c357c Merge branch 'master' of https://gitlab.kitware.com/vtk/vtk-m 53bb34b8 Merge branch 'master' of https://gitlab.kitware.com/vtk/vtk-m 5b1a6b36 Adding Clear() method to DataSet. f5e3c3ac Add missing methods to CellSetPermutation. cec123c6 CellSetSingleType::Fill now works with custom storage types. 8adbdefd WIP: Install missing header. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !274
-
T.J. Corona authored
-
-
- 12 Nov, 2015 9 commits
-
-
Kenneth Moreland authored
Improve CMake module Some improvements to VTKmConfig.cmake and the device configuration scripts to better support CMake projects using VTK-m. See merge request !271
-
Patricia Kroll Fasel - 090207 authored
-
Patricia Kroll Fasel - 090207 authored
-
Kenneth Moreland authored
If a project loads VTK-m with find_package(VTKm REQUIRED), then also make it required to find any packages the default devices require.
-
Kenneth Moreland authored
Instead, use VTKm_LIBRARIES and VTKm_INCLUDE_DIRS where the configuration stores all necessary libraries and include directories.
-
Kenneth Moreland authored
* Support a REQUIRED flag that only gives an error if that flag is given. * Move common configuration required for all devices (such as boost) to a special device named Base. * Make CUDA always capitalized to be consistent with the other CMake variables. * Rather than call include_directories, set a variable named VTKm_INCLUDE_DIRS. This is consistent with how most CMake packages work. * Make a CMake variable named VTKm_LIBRARIES containing all the libraries the configured devices need. * Automatically configure supported devices when loading the VTK-m package in CMake.
-
c6a562ae Fix for MSVC conversion warning 70b2eff8 Update clipping example to use the new io framework 503f9197 Fix VTK DataSet IO to work correctly with DynamicArrayHandle 2b771418 Update Clip worklets to work with more types Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !268
-
Sujin Philip authored
-
Sujin Philip authored
-