/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipcub/checkouts/docs-5.5.1/hipcub/include/hipcub/backend/rocprim/hipcub.hpp Source File

/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipcub/checkouts/docs-5.5.1/hipcub/include/hipcub/backend/rocprim/hipcub.hpp Source File#

hipCUB: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipcub/checkouts/docs-5.5.1/hipcub/include/hipcub/backend/rocprim/hipcub.hpp Source File
hipcub.hpp
1 /******************************************************************************
2  * Copyright (c) 2010-2011, Duane Merrill. All rights reserved.
3  * Copyright (c) 2011-2018, NVIDIA CORPORATION. All rights reserved.
4  * Modifications Copyright (c) 2017-2022, Advanced Micro Devices, Inc. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of the NVIDIA CORPORATION nor the
14  * names of its contributors may be used to endorse or promote products
15  * derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20  * DISCLAIMED. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY
21  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  ******************************************************************************/
29 
30 #ifndef HIPCUB_ROCPRIM_HIPCUB_HPP_
31 #define HIPCUB_ROCPRIM_HIPCUB_HPP_
32 
33 #include "../../config.hpp"
34 
35 // Block
36 #include "block/block_adjacent_difference.hpp"
37 #include "block/block_discontinuity.hpp"
38 #include "block/block_exchange.hpp"
39 #include "block/block_histogram.hpp"
40 #include "block/block_load.hpp"
41 #include "block/block_merge_sort.hpp"
42 #include "block/block_radix_rank.hpp"
43 #include "block/block_radix_sort.hpp"
44 #include "block/block_raking_layout.hpp"
45 #include "block/block_reduce.hpp"
46 #include "block/block_run_length_decode.hpp"
47 #include "block/block_scan.hpp"
48 #include "block/block_shuffle.hpp"
49 #include "block/block_store.hpp"
50 #include "block/radix_rank_sort_operations.hpp"
51 
52 // Device
53 #include "device/device_adjacent_difference.hpp"
54 #include "device/device_histogram.hpp"
55 #include "device/device_merge_sort.hpp"
56 #include "device/device_partition.hpp"
57 #include "device/device_radix_sort.hpp"
58 #include "device/device_reduce.hpp"
59 #include "device/device_run_length_encode.hpp"
60 #include "device/device_scan.hpp"
61 #include "device/device_segmented_radix_sort.hpp"
62 #include "device/device_segmented_reduce.hpp"
63 #include "device/device_segmented_sort.hpp"
64 #include "device/device_select.hpp"
65 #include "device/device_spmv.hpp"
66 
67 // Grid
68 #include "grid/grid_barrier.hpp"
69 #include "grid/grid_even_share.hpp"
70 #include "grid/grid_mapping.hpp"
71 #include "grid/grid_queue.hpp"
72 
73 // Iterator
74 #include "iterator/arg_index_input_iterator.hpp"
75 #include "iterator/cache_modified_input_iterator.hpp"
76 #include "iterator/cache_modified_output_iterator.hpp"
77 #include "iterator/constant_input_iterator.hpp"
78 #include "iterator/counting_input_iterator.hpp"
79 #include "iterator/discard_output_iterator.hpp"
80 #include "iterator/tex_obj_input_iterator.hpp"
81 #include "iterator/tex_ref_input_iterator.hpp"
82 #include "iterator/transform_input_iterator.hpp"
83 
84 // Thread
85 #include "thread/thread_load.hpp"
86 #include "thread/thread_operators.hpp"
87 #include "thread/thread_reduce.hpp"
88 #include "thread/thread_scan.hpp"
89 #include "thread/thread_search.hpp"
90 #include "thread/thread_sort.hpp"
91 #include "thread/thread_store.hpp"
92 
93 // Warp
94 #include "warp/warp_exchange.hpp"
95 #include "warp/warp_load.hpp"
96 #include "warp/warp_merge_sort.hpp"
97 #include "warp/warp_reduce.hpp"
98 #include "warp/warp_scan.hpp"
99 #include "warp/warp_store.hpp"
100 
101 // Util
102 #include "util_allocator.hpp"
103 #include "util_ptx.hpp"
104 #include "util_type.hpp"
105 
106 #endif // HIPCUB_ROCPRIM_HIPCUB_HPP_