- 30 Jun, 2021 1 commit
-
-
8d7cf2c8 Support all Allocate flags in UnknownArrayHandle Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Li-Ta Lo <ollie@lanl.gov> Merge-request: !2522
-
- 28 Jun, 2021 2 commits
-
-
102e640f Remove obsolete debug output from distributed contour tree app Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <morelandkd@ornl.gov> Merge-request: !2518
-
Gunther Weber authored
-
- 26 Jun, 2021 2 commits
-
-
dd727b9a General: remove warnings in the CI Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <morelandkd@ornl.gov> Merge-request: !2520
-
Vicente Bolea authored
Signed-off-by:
Vicente Adolfo Bolea Sanchez <vicente.bolea@kitware.com>
-
- 24 Jun, 2021 3 commits
-
-
dd2aa335 LFS: Set lfs.url upon the origin url Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <morelandkd@ornl.gov> Merge-request: !2517
-
Vicente Bolea authored
Signed-off-by:
Vicente Adolfo Bolea Sanchez <vicente.bolea@kitware.com>
-
f878ba8d Move the check for 0 inputs. With mpi, 0 input is ok for a rank. 4b2dbfba Remove unused header. b0808247 Clean up the code a bit. c4341adf update cmakelists.txt. The merge somehow missed this.. 90bed8d0 refactor particle adv-based filters and make a temporal particle adv filter. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2515
-
- 23 Jun, 2021 3 commits
-
-
fe3b82b9 implement return codes and protected virtual parsing of arguments ce9c27bc Implement tests for RuntimeDeviceConfiguration helpers 408beefc Implement RuntimeDeviceConfiguration Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <morelandkd@ornl.gov> Merge-request: !2513
-
Nickolas Davis authored
-
Dave Pugmire authored
-
- 22 Jun, 2021 4 commits
-
-
fae25e81 lfs: add pushurl address to avoid auth Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2510
-
-
Dave Pugmire authored
-
Dave Pugmire authored
-
- 21 Jun, 2021 1 commit
-
-
Kenneth Moreland authored
`UnknownArrayHandle` supported an `Allocate` method to change the size of the underlying array without knowing its type. However, it did not give all the features of `ArrayHandle`'s allocate. Namely, you could not specify that the data should be preserved and you could not provide a `Token` object. This change adds these (optional) parameters.
-
- 20 Jun, 2021 1 commit
-
-
81076385 DOCS: add GitLab issue template new-release.md Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2450
-
- 18 Jun, 2021 1 commit
-
-
Vicente Bolea authored
It updates the ReleaseProcess.md document to describe our bi-branchial workflow composed by a release branch and master branch It also adds ReleaseHotFix.md which describes how to perform a HotFix onto master/release branch. Signed-off-by:
Vicente Adolfo Bolea Sanchez <vicente.bolea@kitware.com>
-
- 17 Jun, 2021 2 commits
-
-
Nickolas Davis authored
-
Nickolas Davis authored
-
- 16 Jun, 2021 1 commit
-
-
218429fd Make benchmarks work with most recent TBB Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Nickolas Davis <nadavi@sandia.gov> Merge-request: !2516
-
- 15 Jun, 2021 1 commit
-
-
Kenneth Moreland authored
-
- 14 Jun, 2021 1 commit
-
-
3be3529f Export tbb interface as vtkm::tbb a8825db5 Disable loading the TBBConfig.cmake file 5eb688da Update parallel radix sort for OpenMP 1eea0bee Use TBB task_group for radix sort 904e784e Remove TBB parallel_sort patch 0390c8b0 Pull FindTBB.cmake from VTK Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Vicente Bolea <vicente.bolea@kitware.com> Merge-request: !2509
-
- 12 Jun, 2021 1 commit
-
-
9d5d9e38 Remove testing headers from benchmarking Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Vicente Bolea <vicente.bolea@kitware.com> Merge-request: !2512
-
- 11 Jun, 2021 2 commits
-
-
Dave Pugmire authored
-
Dave Pugmire authored
-
- 10 Jun, 2021 8 commits
-
-
3bd15950 Clarify dimension values for 2d, 1d. fix test 651345b4 cleanup included headers. aaa6855a Clean the code up a little. 35882095 Add helper class to build curvilinear datasets. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <morelandkd@ornl.gov> Merge-request: !2511
-
Kenneth Moreland authored
The dependent exports should be placed in the vtkm namespace.
-
Kenneth Moreland authored
Sourcing the file installed on dragnipur is causing a CMake error. I don't know if it is an install error or a problem with FindTBB.cmake, but this should get around the problem by just using the "old" method for finding TBB.
-
Kenneth Moreland authored
Some changes required for TBB bled into the implementation of OpenMP.
-
Kenneth Moreland authored
TBB 2020 introduced a new class called `task_group`. TBB 2021 removed the old class `task` as its functionality was replaced by `task_group`. Our parallel radix sort for TBB was implemented using `task`s, so change it to use `task_group` (which actually cleans up the code a bit).
-
Kenneth Moreland authored
The code in `vtkm/cont/Testing.h` now requires a library, which is not built if testing is not built. Thus, the benchmarking code was giving a compile error if benchmarking was on but testing was off. Change the benchmarking to not rely on anything in the Testing framework. This means using classes in `vtkm/source` instead of `MakeTestData`. Also avoid using the `TestValue` defined for the tests. (In one case, we have a simple replacement.) Also had to fix a problem with a header file not defining everything it needed to compile.
-
Kenneth Moreland authored
Years ago we discovered a problem with TBB's parallel sort, which we patch in our local repo and submitted a change to TBB, which has been accepted. The code to decide whether to use our parallel_sort patch does not work with the latest versions of TBB because it requires including a header that changed names to get the TBB version. We no longer support any TBB version with this bug, so just remove the patch from VTK-m.
-
Kenneth Moreland authored
The latest version of TBB changes the include directory where the version is stored, so the old version of FindTBB.cmake would fail because it could not open this file. This issue has already been fixed by the FindTBB.cmake in VTK, so pull the latest version of that.
-
- 09 Jun, 2021 4 commits
-
-
Dave Pugmire authored
-
Dave Pugmire authored
-
Dave Pugmire authored
-
Dave Pugmire authored
-
- 02 Jun, 2021 2 commits
-
-
5288bb89 lfs: set default url to gitlab repo Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !2506
-
b719911d cmake: use `if (TEST)` to detect tests that are enabled 4c7fe13a cmake: avoid adding testing directories if testing is disabled Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Vicente Bolea <vicente.bolea@kitware.com> Merge-request: !2508
-