This project is mirrored from https://gitlab.kitware.com/vtk/vtk-m.git.
Pull mirroring updated .
- 19 Nov, 2018 2 commits
-
-
Maynard, Robert authored
ad433780 Properly handle FindTBB modules that don't contain TBB_LIBRARY_RELEASE Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1459
-
Maynard, Robert authored
The FindTBB modules that come with packages such as OSPRay don't provide TBB_LIBRARY_RELEASE but instead only provide TBB_LIBRARY. If TBB_LIBRARY_RELEASE isn't found, and TBB_LIBRARY is we will use that as the release library
-
- 16 Nov, 2018 1 commit
-
-
Maynard, Robert authored
dfa9f644 MSVC now supports the COMPILE_LANGUAGE generator expression. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Haocheng LIU <haocheng.liu@kitware.com> Merge-request: !1455
-
- 14 Nov, 2018 4 commits
-
-
Kenneth Moreland authored
3e3baad6 Add better queries to vtkm::exec::arg::BoundaryState Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1456
-
Kenneth Moreland authored
33db6655 Make the building of static color table presets is thread safe 8984e74e Hold preset information in simple struct 70e10459 Update presets for ColorTable Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !1449
-
Kenneth Moreland authored
If multiple threads call a function with a static function simultaneously for the first time, C++ does not guarantee that the static member will be constructed correctly. Make sure that it happens correctly.
-
Kenneth Moreland authored
Previously, vtkm::exec::arg::BoundaryState only provided methods that said whether or not the neighborhood extened past the boundary of a mesh. That is fine for a 3x3x3 neighborhood, which can only extend over the boundary by one. However, that is problematic for larger neighborhoods where you may need to know how far neighborhood extends over the boundary. This changes allows you to query how far the neighborhood extends within the constrains of the boundary.
-
- 12 Nov, 2018 2 commits
-
-
Maynard, Robert authored
-
Kenneth Moreland authored
Creating all the presets as vtkm::cont::ColorTable objects and passing them back was problematic. It caused state to be shared and caused issues when deallocating after the device deallocation methods were finalized. Instead, make a simple struct and build new color tables on the fly.
-
- 09 Nov, 2018 1 commit
-
-
Kenneth Moreland authored
The ParaView project went through a rigourous selection process for a short list of color tables. Let's replicate that for our presets.
-
- 08 Nov, 2018 1 commit
-
-
Dave Pugmire authored
1e9c7b3c Add tests for rectilinear and explicit datasets. Remove a commented-out line. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !1453
-
- 06 Nov, 2018 1 commit
-
-
Dave Pugmire authored
-
- 05 Nov, 2018 1 commit
-
-
Maynard, Robert authored
dadfeab0 Simplify vtkm::cont::Field by using delegating constructors. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1452
-
- 02 Nov, 2018 3 commits
-
-
Maynard, Robert authored
-
Haocheng LIU authored
bb067178 Make RuntimeDeviceInformation class template independent Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1446
-
Kenneth Moreland authored
86a747a1 Add ability to customize filter policy to auxiliary input fields Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !1442
-
- 01 Nov, 2018 5 commits
-
-
Haocheng LIU authored
By making RuntimeDeviceInformation class template independent, vtkm is able to detect device info at runtime with a runtime specified deviceId. In the past it's impossible because the CRTP pattern does not allow function overloading(compiler would complain that DeviceAdapterRuntimeDetector does not have Exists() function defined).
-
Matt Larsen authored
2d782ff7 removing some entries from test build exclusion (colors) 2addf939 removing color conversion files from test build e5d03852 add subdirectory for colorconversion Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !1451
-
Larsen, Matthew authored
-
Larsen, Matthew authored
-
Larsen, Matthew authored
-
- 31 Oct, 2018 6 commits
-
-
Kenneth Moreland authored
The field infrastructure has a "trait" that specifies the valid types for the default active scalar field. Most filters have at most one input field. The majority of the remaining filters use the same types for inputs. There are some examples, however, where some auxiliary fields use different types. This change adds a second template parameter to FieldTraits to customize the valid types of the input scalar field to different fields. These changes are in anticipation of the removal of list specifier tags on worklet ControlSignature arguments.
-
Maynard, Robert authored
154b65f4 Install vtkm/cont/ColorTable.hxx so users can use color tables Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Matt Larsen <mlarsen@cs.uoregon.edu> Merge-request: !1448
-
Maynard, Robert authored
-
Matt Larsen authored
fd4ff8c1 adding files patch forgot e0370357 removing unused variable 5a1685d8 updates to the connectivity tracer Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1447
-
Maynard, Robert authored
169ca722 Redesign vtkm::cont::ColorTable to work with separable compilation. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Sujin Philip <sujin.philip@kitware.com> Merge-request: !1445
-
Maynard, Robert authored
-
- 30 Oct, 2018 3 commits
-
-
Larsen, Matthew authored
-
Larsen, Matthew authored
-
Larsen, Matthew authored
-
- 29 Oct, 2018 1 commit
-
-
Maynard, Robert authored
c66a6e48 Provided vtkm::cont::Storage with move schematics 1f86878f Make the ArrayHandle move constructors noexcept. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !1439
-
- 25 Oct, 2018 1 commit
-
-
Maynard, Robert authored
184bdf9d Test rendering with OpenMP Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !1441
-
- 24 Oct, 2018 5 commits
-
-
Maynard, Robert authored
-
Kenneth Moreland authored
5426ae0e added runtime device tracker force cb032388 removed device from run function for AverageByKey Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1440
-
Maynard, Robert authored
-
Matthew Letter authored
added `vtkm::cont::GetGlobalRuntimeDeviceTracker().ForceDevice(VTKM_DEFAULT_DEVICE_ADAPTER_TAG());`
-
Matthew Letter authored
I also cleaned up the unit test to no longer pass the device
-
- 23 Oct, 2018 1 commit
-
-
Maynard, Robert authored
std::containers only activate fast emplace operations if the T types move operators are noexcept
-
- 22 Oct, 2018 2 commits
-
-
Maynard, Robert authored
3b847f9a Add change log for removal of TryExecute from filters Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !1437
-
Maynard, Robert authored
9403bac1 VTK-m device side math functions need to use the vtkm:: wrappers Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1436
-