vtk-m/vtkm/worklet/internal
Kenneth Moreland 7933c70ca5 Add dispatcher type when logging worklet invocation
When you invoke a worklet, a scoped performance log is automatically
generated. The previous version gave the name of the worklet, which is
technically everything you need to know. However, it is also convenient
to know what type of worklet it is (e.g. a field map worklet or a
topology map worklet). This can be determined by looking at the
definition of the worklet in the source code, but that is not practical
if, for example, you want to perform automated analysis.

This change prints out the type of the dispatcher instead of the
worklet. The full type of the dispatcher includes the worklet as a
template parameter, so you get both the dispatcher/worklet type and the
worklet itself. So previously you would get log lines like

```
Invoking Worklet: 'vtkm::worklet::vtkm::worklet::ExternalFaces::NumFacesPerCell'
```

They now look like this:

```
Invoking Worklet: 'vtkm::worklet::DispatcherMapTopology<vtkm::worklet::ExternalFaces::NumFacesPerCell>'
```
2020-10-08 16:10:00 -06:00
..
testing clang-format: reformat the repository with clang-format-9 2020-08-24 14:01:08 -04:00
.gitattributes clang-format: apply to the entire tree 2017-05-25 07:51:37 -04:00
CMakeLists.txt Make Tuple class 2020-03-16 17:12:16 -06:00
DispatcherBase.h Add dispatcher type when logging worklet invocation 2020-10-08 16:10:00 -06:00
MaskBase.h Make Tuple class 2020-03-16 17:12:16 -06:00
Placeholders.h Move from tao::tuple to vtkm::Tuple 2020-03-16 17:12:16 -06:00
ScatterBase.h Make Tuple class 2020-03-16 17:12:16 -06:00
TriangulateTables.h Improvements to moving data into ArrayHandle 2020-07-23 10:53:38 -06:00
WorkletBase.h Merge topic 'no-streaming-arrayhandle' 2020-03-25 11:26:26 -04:00