Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NVIDIA/cccl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1b160d2138a6aaeb488a1840b1c68ab1dbc470b2
Choose a base ref
..
head repository: NVIDIA/cccl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 611e6617a41a766babe785a7fbfac6e698405ac4
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 thrust/thrust/system/tbb/detail/scan.inl
2 changes: 1 addition & 1 deletion thrust/thrust/system/tbb/detail/scan.inl
Original file line number Diff line number Diff line change
@@ -264,7 +264,7 @@ OutputIterator inclusive_scan(
{
using namespace thrust::detail;

// Use the input iterator's value type per https://wg21.link/P0571
// Use the input iterator's value type and the initial value type per wg21.link/p2322
using ValueType = typename ::cuda::std::
__accumulator_t<BinaryFunction, typename ::cuda::std::iterator_traits<InputIterator>::value_type, InitialValueType>;