vtk-m/docs/changelog/invoker-vtkm-cont.md
Robert Maynard 7e04b0511f Move Invoker into vtkm/cont
The Invoker is a control side object that handles the construction
of the relevant worklet dispatcher. Moving it to control makes it
obvious that it isn't an algorithm itself but a way to launch
worklets.
2019-08-01 12:34:27 -04:00

326 B

Invoker moved to vtkm::cont

Previously, Invoker was located in the vtkm::worklet namespace to convey it was a replacement for using vtkm::worklet::Dispatcher*. In actuality it should be in vtkm::cont as it is the proper way to launch worklets for execution, and that shouldn't exist inside the worklet namespace.