We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bb499f commit 9cb8f6fCopy full SHA for 9cb8f6f
cpp/include/cudf/reduction/detail/reduction.cuh
@@ -66,7 +66,7 @@ std::unique_ptr<scalar> reduce(InputIterator d_in,
66
{
67
auto const binary_op = cudf::detail::cast_functor<OutputType>(op.get_binary_op());
68
auto const initial_value = init.value_or(op.template get_identity<OutputType>());
69
- auto pinned_initial = cudf::detail::make_pinned_vector_async<OutputType>(1, stream);
+ auto pinned_initial = cudf::detail::make_pinned_vector<OutputType>(1, stream);
70
pinned_initial[0] = initial_value;
71
using ScalarType = cudf::scalar_type_t<OutputType>;
72
auto result = std::make_unique<ScalarType>(pinned_initial[0], true, stream, mr);
0 commit comments