Reduce by Key Worklet Type
- Jan 17, 2017
-
-
Kenneth Moreland authored
-
Kenneth Moreland authored
There was a static assert in a templated function that was never supposed to be used. Some compilers were fine as long as there was no use of the templated function, but others errored out anyway. Change the implementation to use the =delete keyword instead. This won't have as nice of an error message, but you would have to jump through some hoops to get to this point anyway. If this still does not work, we could just probably remove the invalid templated function. The compiler error would get even more obfuscated, but again I don't expect anyone to actually run into it.
-
Kenneth Moreland authored
-
Kenneth Moreland authored
-
Kenneth Moreland authored
This lets you give arrays of values paired with the keys that will be grouped into (hopefully) small Vecs.
-
Kenneth Moreland authored
And the basic type for a reduce by key worklet and its associated adapter. Right now the worklet only supports passing in keys. Values come next.
-
Kenneth Moreland authored
This class will manage the keys during a reduce-by-key worklet execution.
-