- 26 Nov, 2018 3 commits
-
-
Robert Maynard authored
1.3.0 is our fourth official release of VTK-m. The major changes to VTK-m from 1.2.0 can be found in: docs/changelog/1.3/release-notes.md
-
Robert Maynard authored
-
Robert Maynard authored
-
- 20 Nov, 2018 1 commit
-
-
b922851b Correct rendering warning of a 64bit to 32bit conversion Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !1458
-
- 19 Nov, 2018 3 commits
-
-
ad433780 Properly handle FindTBB modules that don't contain TBB_LIBRARY_RELEASE Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1459
-
Robert Maynard 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
-
Robert Maynard authored
-
- 16 Nov, 2018 1 commit
-
-
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 3 commits
-
-
3e3baad6 Add better queries to vtkm::exec::arg::BoundaryState Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1456
-
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.
-
- 13 Nov, 2018 1 commit
-
-
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 1 commit
-
-
Robert Maynard authored
-
- 11 Nov, 2018 1 commit
-
-
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
-
-
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
-
-
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 2 commits
-
-
Robert Maynard authored
-
bb067178 Make RuntimeDeviceInformation class template independent Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1446
-
- 01 Nov, 2018 6 commits
-
-
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
-
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).
-
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
-
Matt Larsen authored
-
Matt Larsen authored
-
Matt Larsen 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.
-
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
-
Robert Maynard 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
-
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
-
Robert Maynard authored
-
- 30 Oct, 2018 3 commits
-
-
Matt Larsen authored
-
Matt Larsen authored
-
Matt Larsen authored
-
- 29 Oct, 2018 1 commit
-
-
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
-
-
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 3 commits
-
-
Robert Maynard 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
-
Robert Maynard authored
-