Files
project_6/cccl_upstream/thrust/examples/repeated_range.cu
EngineX CI 56fd68e7dd [INFRA] Import NVIDIA/CCCL upstream as optimization reference library
CCCL (CUDA C++ Core Libraries) provides:
- CUB: device/block/warp-level GPU primitives (reduce, scan, sort, topk)
- Thrust: high-level parallel algorithms (transform_reduce, sort, scan)
- libcudacxx: CUDA C++ standard library (atomics, barriers, memory)
- cudax: experimental features (memory resources, allocators)
- Tuning policies: per-SM hardware-specific algorithm parameters

Competition optimization vectors mapped to CCCL:
- Output TPS (83% weight): warp_reduce, block_reduce, device_topk
- Input TPS (14% weight): device_scan, block_load, prefetch
- Cache TPS (3% weight): prefix caching strategy patterns
- Memory (0.9 util): pooled/cached/buddy allocators

Source: https://github.com/NVIDIA/cccl (shallow clone, HEAD only)
License: Apache-2.0
2026-07-30 09:35:51 +00:00

93 lines
2.6 KiB
Plaintext

#include <thrust/copy.h>
#include <thrust/device_vector.h>
#include <thrust/fill.h>
#include <thrust/functional.h>
#include <thrust/iterator/counting_iterator.h>
#include <thrust/iterator/permutation_iterator.h>
#include <thrust/iterator/transform_iterator.h>
#include <iostream>
// this example illustrates how to make repeated access to a range of values
// examples:
// repeated_range([0, 1, 2, 3], 1) -> [0, 1, 2, 3]
// repeated_range([0, 1, 2, 3], 2) -> [0, 0, 1, 1, 2, 2, 3, 3]
// repeated_range([0, 1, 2, 3], 3) -> [0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3]
// ...
template <typename Iterator>
class repeated_range
{
public:
using difference_type = typename cuda::std::iterator_traits<Iterator>::difference_type;
struct repeat_functor
{
difference_type repeats;
repeat_functor(difference_type repeats)
: repeats(repeats)
{}
__host__ __device__ difference_type operator()(const difference_type& i) const
{
return i / repeats;
}
};
using CountingIterator = typename thrust::counting_iterator<difference_type>;
using TransformIterator = typename thrust::transform_iterator<repeat_functor, CountingIterator>;
using PermutationIterator = typename thrust::permutation_iterator<Iterator, TransformIterator>;
// type of the repeated_range iterator
using iterator = PermutationIterator;
// construct repeated_range for the range [first,last)
repeated_range(Iterator first, Iterator last, difference_type repeats)
: first(first)
, last(last)
, repeats(repeats)
{}
iterator begin() const
{
return PermutationIterator(first, TransformIterator(CountingIterator(0), repeat_functor(repeats)));
}
iterator end() const
{
return begin() + repeats * (last - first);
}
protected:
Iterator first;
Iterator last;
difference_type repeats;
};
int main()
{
thrust::device_vector<int> data{10, 20, 30, 40};
// print the initial data
std::cout << "range ";
thrust::copy(data.begin(), data.end(), std::ostream_iterator<int>(std::cout, " "));
std::cout << '\n';
using Iterator = thrust::device_vector<int>::iterator;
// create repeated_range with elements repeated twice
repeated_range<Iterator> twice(data.begin(), data.end(), 2);
std::cout << "repeated x2: ";
thrust::copy(twice.begin(), twice.end(), std::ostream_iterator<int>(std::cout, " "));
std::cout << '\n';
// create repeated_range with elements repeated x3
repeated_range<Iterator> thrice(data.begin(), data.end(), 3);
std::cout << "repeated x3: ";
thrust::copy(thrice.begin(), thrice.end(), std::ostream_iterator<int>(std::cout, " "));
std::cout << '\n';
return 0;
}