vtk-m/vtkm/filter/vector_analysis
Kenneth Moreland 2945813755 Removed ExecutionWholeArray class
`ExecutionWholeArray` is an archaic class in VTK-m that is a thin wrapper
around an array portal. In the early days of VTK-m, this class was used to
transfer whole arrays to the execution environment. However, now the
supported method is to use `WholeArray*` tags in the `ControlSignature` of
a worklet.

Nevertheless, the `WholeArray*` tags caused the array portal transferred to
the worklet to be wrapped inside of an `ExecutionWholeArray` class. This
is unnecessary and can cause confusion about the types of data being used.

Most code is unaffected by this change. Some code that had to work around
the issue of the portal wrapped in another class used the `GetPortal`
method which is no longer needed (for obvious reasons). One extra feature
that `ExecutionWholeArray` had was that it provided an subscript operator
(somewhat incorrectly). Thus, any use of '[..]' to index the array portal
have to be changed to use the `Get` method.
2022-10-27 15:07:41 -06:00
..
testing Add tests for divergence, vorticity, and q criterion 2022-03-18 12:58:57 -06:00
worklet Removed ExecutionWholeArray class 2022-10-27 15:07:41 -06:00
CMakeLists.txt Add module mechanism 2022-10-26 12:51:05 -06:00
CrossProduct.cxx tidy-up language usage 2022-02-02 12:44:00 -07:00
CrossProduct.h Fix doxygen groups 2022-09-09 10:37:31 +08:00
DotProduct.cxx renamve vector_calculus -> vector_analysis 2022-01-31 08:58:38 -07:00
DotProduct.h Fix doxygen groups 2022-09-09 10:37:31 +08:00
Gradient.cxx Change all usage of IsField* to Is*Field. 2022-08-29 14:42:02 -04:00
Gradient.h Improve deprecation support for moved or renamed headers 2022-02-16 07:08:05 -07:00
SurfaceNormals.cxx explicitly use CoordinateSystem as input field 2022-01-31 09:52:25 -07:00
SurfaceNormals.h SurfaceNormal -> SurfaceNormals 2022-03-03 15:28:20 -07:00
VectorMagnitude.cxx tidy-up language usage 2022-02-02 12:44:00 -07:00
VectorMagnitude.h Improve deprecation support for moved or renamed headers 2022-02-16 07:08:05 -07:00
vtkm.module Add module mechanism 2022-10-26 12:51:05 -06:00