Skip to content

Correct undefined behavior that was causing scan test failures.

Robert Maynard requested to merge robertmaynard/vtk-m:correct_cuda_scan into master

We need call PrepareForInput on the input argument before invoking a function. The order of execution of parameters of a function is undefined, so we need to make sure input is called before output, or else in-place use case breaks.

Merge request reports