| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
|
|
| #pragma once |
|
|
| #include <thrust/detail/config.h> |
|
|
| #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) |
| # pragma GCC system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) |
| # pragma clang system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) |
| # pragma system_header |
| #endif |
|
|
| |
| #include <thrust/system/cpp/detail/execution_policy.h> |
|
|
| |
| #include <thrust/system/cpp/detail/par.h> |
|
|
| |
|
|
| #include <thrust/system/cpp/detail/adjacent_difference.h> |
| #include <thrust/system/cpp/detail/assign_value.h> |
| #include <thrust/system/cpp/detail/binary_search.h> |
| #include <thrust/system/cpp/detail/copy.h> |
| #include <thrust/system/cpp/detail/copy_if.h> |
| #include <thrust/system/cpp/detail/count.h> |
| #include <thrust/system/cpp/detail/equal.h> |
| #include <thrust/system/cpp/detail/extrema.h> |
| #include <thrust/system/cpp/detail/fill.h> |
| #include <thrust/system/cpp/detail/find.h> |
| #include <thrust/system/cpp/detail/for_each.h> |
| #include <thrust/system/cpp/detail/gather.h> |
| #include <thrust/system/cpp/detail/generate.h> |
| #include <thrust/system/cpp/detail/get_value.h> |
| #include <thrust/system/cpp/detail/inner_product.h> |
| #include <thrust/system/cpp/detail/iter_swap.h> |
| #include <thrust/system/cpp/detail/logical.h> |
| #include <thrust/system/cpp/detail/malloc_and_free.h> |
| #include <thrust/system/cpp/detail/merge.h> |
| #include <thrust/system/cpp/detail/mismatch.h> |
| #include <thrust/system/cpp/detail/partition.h> |
| #include <thrust/system/cpp/detail/reduce.h> |
| #include <thrust/system/cpp/detail/reduce_by_key.h> |
| #include <thrust/system/cpp/detail/remove.h> |
| #include <thrust/system/cpp/detail/replace.h> |
| #include <thrust/system/cpp/detail/reverse.h> |
| #include <thrust/system/cpp/detail/scan.h> |
| #include <thrust/system/cpp/detail/scan_by_key.h> |
| #include <thrust/system/cpp/detail/scatter.h> |
| #include <thrust/system/cpp/detail/sequence.h> |
| #include <thrust/system/cpp/detail/set_operations.h> |
| #include <thrust/system/cpp/detail/sort.h> |
| #include <thrust/system/cpp/detail/swap_ranges.h> |
| #include <thrust/system/cpp/detail/tabulate.h> |
| #include <thrust/system/cpp/detail/transform.h> |
| #include <thrust/system/cpp/detail/transform_reduce.h> |
| #include <thrust/system/cpp/detail/transform_scan.h> |
| #include <thrust/system/cpp/detail/uninitialized_copy.h> |
| #include <thrust/system/cpp/detail/uninitialized_fill.h> |
| #include <thrust/system/cpp/detail/unique.h> |
| #include <thrust/system/cpp/detail/unique_by_key.h> |
|
|
|
|
| |
| |
| #if 0 |
| THRUST_NAMESPACE_BEGIN |
| namespace system |
| { |
| namespace cpp |
| { |
|
|
|
|
| |
| |
| |
|
|
|
|
| |
| |
| |
| template<typename DerivedPolicy> |
| struct execution_policy : thrust::execution_policy<DerivedPolicy> |
| {}; |
|
|
|
|
| |
| |
| |
| |
| struct tag : thrust::system::cpp::execution_policy<tag> { unspecified }; |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| static const unspecified par; |
|
|
|
|
| |
| |
|
|
|
|
| } |
| } |
| THRUST_NAMESPACE_END |
| #endif |
|
|
|
|
|
|