Allison Vacanti 7657036f9c Add helper methods to configure throughput.
Instead of:

```
state.set_element_count(size);
state.set_global_memory_bytes_accessed(
  size * (sizeof(InT) + sizeof(OutT)));
```

do:

```
state.add_element_count(size, "Elements");
state.add_global_memory_read<InT>(size, "InputSize");
state.add_global_memory_write<InT>(size, "OutputSize");
```

The string arguments are optional. If provided, a new column will
be added to the output with the indicated name and number
of bytes (or elements for `add_element_count`).
2021-02-18 15:47:59 -05:00
2021-02-16 16:08:38 -05:00
Description
Languages
Cuda 60.5%
C++ 16%
Python 13.4%
CMake 5.1%
Shell 5%