- 21 May, 2019 1 commit
-
-
Robert Maynard authored
2041091e Move vtkm:: operators from global namespace to vtkm namespace Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1679
-
- 20 May, 2019 1 commit
-
-
Robert Maynard authored
Fixes #361 The Vec, Range, and Pair free function operators are all now in the vtk-m namespace to help with ADL lookup.
-
- 16 May, 2019 4 commits
-
-
Robert Maynard authored
63fe0f09 DispatcherReduceByKey uses the scheduling_range like all other dispatchers Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1674
-
Robert Maynard authored
1b62901e Empty DynamicCellSet doesn't segfault on certain queries. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1675
-
Robert Maynard authored
7184648c Add support for clang-cl compilation on windows b8f5d582 Merge branch 'upstream-diy' into support_clang-cl 58ad3ca3 diy 2019-05-14 (41fd7af6) Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1671
-
Robert Maynard authored
Fixes #370
-
- 15 May, 2019 6 commits
-
-
Robert Maynard authored
-
Robert Maynard authored
18a0cd35 vtkm::worklet::Invoker now supports scatter types afc3f530 Remove unneeded ScatterType as it was the default a1ea509f All scatter types now inherit from a common base 77378993 DispatcherBase: Simplify remove_cvref and remove_pointer_and_decay. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1673
-
Robert Maynard authored
Fixes #297
-
Robert Maynard authored
-
Robert Maynard authored
This is required for vtkm::worklet::Invoker to launch worklets with a non default scatter type.
-
Robert Maynard authored
designed easier to use remove_cvref and remove_pointer_and_decay functions for the DispatcherBase.
-
- 14 May, 2019 4 commits
-
-
Robert Maynard authored
-
Robert Maynard authored
* upstream-diy: diy 2019-05-14 (41fd7af6)
-
Kitware Robot authored
Code extracted from: https://gitlab.kitware.com/third-party/diy2.git at commit 41fd7af6208a5539b7675bfc488df8739f9a8f97 (for/vtk-m).
-
Sujin Philip authored
b74ab327 Improve VTK DataSet Reader Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robert.maynard@kitware.com> Merge-request: !1670
-
- 13 May, 2019 3 commits
-
-
Sujin Philip authored
1. Support reading Tensors (Vec<T, 9>) 2. Support reading files having `METADATA`.
-
Robert Maynard authored
80e5f274 Update update-common.sh to the SHA1: b094fcba Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1669
-
Robert Maynard authored
This update allows for the update-common script to be run from any directory
-
- 08 May, 2019 2 commits
-
-
Robert Maynard authored
fa3722bf FindFirstSetBit now correctly compiles with the Intel compiler Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1668
-
Robert Maynard authored
Fixes paraview/paraview#18993
-
- 07 May, 2019 1 commit
-
-
Robert Maynard authored
d1ce4a0b Fix the default launch sizes for Tesla hardware. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1667
-
- 06 May, 2019 2 commits
-
-
Robert Maynard authored
674fe1fb StealArray now returns the array and free function as a Pair. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1664
-
Robert Maynard authored
The 8x8x8 is a better launch strategy for most VTK-m kernels. The current problem is that a couple of VTK-m kernels use a high number of registers and this number of threads combines to require too many registers. What we should do in the longer run is have more controls over kernel launches on a per kernel basis. This will require VTK-m to extract the number of registers being used by each kernel
-
- 03 May, 2019 1 commit
-
-
Robert Maynard authored
41b8236a For GCC 4.8.4 'half' shadows a global variable with that name 770912f9 Correct compiler issues found with GCC 4.8.5 + CUDA 9.2 on summit b248b2c9 Correct unused-parameter warnings from defaulted methods. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Allison Vacanti <allison.vacanti@kitware.com> Merge-request: !1666
-
- 02 May, 2019 3 commits
-
-
Robert Maynard authored
-
Robert Maynard authored
-
Robert Maynard authored
GCC 4.8.5 warns about defaulted methods when parameters have names.
-
- 01 May, 2019 4 commits
-
-
Nickolas Davis authored
45c92a05 added missing MinAndMax BinaryOperator tests, updated formatting Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1662
-
Robert Maynard authored
This helps reduces bugs when the callers ask to steal arrays without getting the free function, or ask for the free function after stealing the array.
-
Robert Maynard authored
065d1178 Testing Device Adapter now uses ArrayHandle for all device transfers Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1651
-
Robert Maynard authored
3dda0ab2 Correct unused-parameter warnings from defaulted methods. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1663
-
- 30 Apr, 2019 4 commits
-
-
Robert Maynard authored
The consistent API for control to execution memory transfers is the ArrayHandle class. Previously the tests would verify memory transfer by calling the ArrayManagerExecution class directly. This is problematic as the class isn't used by ArrayHandle<T, StorageBasic>.
-
Robert Maynard authored
GCC 6 warns about defaulted methods when parameters have names.
-
Nickolas Davis authored
-
Robert Maynard authored
27426b7b Fix warnings found with clang-8 inside the OpenMP device adapter. cec9af64 Update the lsan suppression to capture tbb leaks. 8ef2c4be TransferInfo doesn't leak when holding VirtualObjectTransferShareWithControl Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Kenneth Moreland <kmorel@sandia.gov> Merge-request: !1661
-
- 29 Apr, 2019 4 commits
-
-
Robert Maynard authored
d468784f Correct more host/device warnings from methods that should be host only Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1660
-
Robert Maynard authored
-
Robert Maynard authored
Additionally document that we only want to suppress the known leak in loguru::set_thread_name.
-
Robert Maynard authored
When TransferInfo is given memory from VirtualObjectTransferShareWithControl it doesn't have a bound function ptr for the destruction. In those cases we need to make sure the HostCopyOfDevice is properly deleted, otherwise we will cause a memory leak.
-