cuda-cccl 0.1.3.2.0.dev438__cp313-cp313-manylinux_2_24_aarch64.whl → 0.3.0__cp313-cp313-manylinux_2_24_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cuda-cccl might be problematic. Click here for more details.
- cuda/cccl/headers/include/cub/agent/agent_radix_sort_downsweep.cuh +23 -0
- cuda/cccl/headers/include/cub/agent/agent_sub_warp_merge_sort.cuh +22 -14
- cuda/cccl/headers/include/cub/block/block_load_to_shared.cuh +432 -0
- cuda/cccl/headers/include/cub/detail/mdspan_utils.cuh +18 -26
- cuda/cccl/headers/include/cub/device/device_copy.cuh +116 -27
- cuda/cccl/headers/include/cub/device/device_partition.cuh +5 -1
- cuda/cccl/headers/include/cub/device/dispatch/dispatch_copy_mdspan.cuh +79 -0
- cuda/cccl/headers/include/cub/device/dispatch/dispatch_segmented_sort.cuh +321 -262
- cuda/cccl/headers/include/cub/device/dispatch/kernels/reduce.cuh +8 -0
- cuda/cccl/headers/include/cub/device/dispatch/kernels/segmented_sort.cuh +57 -10
- cuda/cccl/headers/include/cub/device/dispatch/kernels/transform.cuh +37 -13
- cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_segmented_sort.cuh +203 -51
- cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_transform.cuh +55 -19
- cuda/cccl/headers/include/cub/util_device.cuh +51 -35
- cuda/cccl/headers/include/cuda/__algorithm/copy.h +3 -3
- cuda/cccl/headers/include/cuda/__device/all_devices.h +3 -6
- cuda/cccl/headers/include/cuda/__device/arch_traits.h +3 -3
- cuda/cccl/headers/include/cuda/__device/attributes.h +7 -7
- cuda/cccl/headers/include/cuda/__device/device_ref.h +3 -10
- cuda/cccl/headers/include/cuda/__driver/driver_api.h +225 -33
- cuda/cccl/headers/include/cuda/__event/event.h +7 -8
- cuda/cccl/headers/include/cuda/__event/event_ref.h +4 -5
- cuda/cccl/headers/include/cuda/__event/timed_event.h +3 -4
- cuda/cccl/headers/include/cuda/__iterator/transform_input_output_iterator.h +3 -3
- cuda/cccl/headers/include/cuda/__iterator/transform_iterator.h +3 -3
- cuda/cccl/headers/include/cuda/__iterator/transform_output_iterator.h +3 -3
- cuda/cccl/headers/include/cuda/__mdspan/host_device_accessor.h +14 -10
- cuda/cccl/headers/include/cuda/__runtime/types.h +1 -1
- cuda/cccl/headers/include/cuda/__stream/stream.h +2 -3
- cuda/cccl/headers/include/cuda/__stream/stream_ref.h +17 -12
- cuda/cccl/headers/include/cuda/__utility/__basic_any/virtual_tables.h +2 -2
- cuda/cccl/headers/include/cuda/std/__cccl/cuda_capabilities.h +2 -2
- cuda/cccl/headers/include/cuda/std/__cccl/preprocessor.h +2 -0
- cuda/cccl/headers/include/cuda/std/__cmath/isnan.h +10 -5
- cuda/cccl/headers/include/cuda/std/__cmath/min_max.h +44 -17
- cuda/cccl/headers/include/cuda/std/__concepts/constructible.h +1 -1
- cuda/cccl/headers/include/cuda/std/__cuda/api_wrapper.h +12 -12
- cuda/cccl/headers/include/cuda/std/__exception/cuda_error.h +1 -8
- cuda/cccl/headers/include/cuda/std/__floating_point/cast.h +15 -12
- cuda/cccl/headers/include/cuda/std/__floating_point/cuda_fp_types.h +3 -0
- cuda/cccl/headers/include/cuda/std/__mdspan/mdspan.h +2 -1
- cuda/cccl/headers/include/cuda/std/__type_traits/promote.h +3 -2
- cuda/cccl/headers/include/thrust/system/cuda/detail/tabulate.h +8 -22
- cuda/cccl/headers/include/thrust/type_traits/unwrap_contiguous_iterator.h +15 -48
- cuda/cccl/parallel/experimental/__init__.py +4 -0
- cuda/cccl/parallel/experimental/_bindings.pyi +28 -0
- cuda/cccl/parallel/experimental/_bindings_impl.pyx +140 -0
- cuda/cccl/parallel/experimental/algorithms/__init__.py +4 -0
- cuda/cccl/parallel/experimental/algorithms/_reduce.py +0 -2
- cuda/cccl/parallel/experimental/algorithms/_scan.py +0 -2
- cuda/cccl/parallel/experimental/algorithms/_three_way_partition.py +261 -0
- cuda/cccl/parallel/experimental/cu12/_bindings_impl.cpython-313-aarch64-linux-gnu.so +0 -0
- cuda/cccl/parallel/experimental/cu12/cccl/libcccl.c.parallel.so +0 -0
- cuda/cccl/parallel/experimental/cu13/_bindings_impl.cpython-313-aarch64-linux-gnu.so +0 -0
- cuda/cccl/parallel/experimental/cu13/cccl/libcccl.c.parallel.so +0 -0
- {cuda_cccl-0.1.3.2.0.dev438.dist-info → cuda_cccl-0.3.0.dist-info}/METADATA +1 -1
- {cuda_cccl-0.1.3.2.0.dev438.dist-info → cuda_cccl-0.3.0.dist-info}/RECORD +59 -57
- cuda/cccl/headers/include/cuda/std/__cuda/ensure_current_device.h +0 -72
- {cuda_cccl-0.1.3.2.0.dev438.dist-info → cuda_cccl-0.3.0.dist-info}/WHEEL +0 -0
- {cuda_cccl-0.1.3.2.0.dev438.dist-info → cuda_cccl-0.3.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -29,7 +29,7 @@ cuda/cccl/headers/include/cub/util_allocator.cuh,sha256=dwAIkZrTdPvT-btwnl_gEGmu
|
|
|
29
29
|
cuda/cccl/headers/include/cub/util_arch.cuh,sha256=fTkDKTEtcTofIpYtuvPJ5mloAN0AUbR1gzPU5QMs1_c,6700
|
|
30
30
|
cuda/cccl/headers/include/cub/util_cpp_dialect.cuh,sha256=UphXGnUiQ0U9DLGpgHLZ-LYwT_qXm784B5GxE4aCnDc,4217
|
|
31
31
|
cuda/cccl/headers/include/cub/util_debug.cuh,sha256=TgJ6oua0fnAqeqxETzs9_4WkMYCsCvic-zUbhGaZ72U,6808
|
|
32
|
-
cuda/cccl/headers/include/cub/util_device.cuh,sha256=
|
|
32
|
+
cuda/cccl/headers/include/cub/util_device.cuh,sha256=GFICaPI_MLuZF3JG3uZkcwS7Vk3u7BOuf8Q4NMG4XVo,31227
|
|
33
33
|
cuda/cccl/headers/include/cub/util_macro.cuh,sha256=_ue7HRd4sCL4bPOhApKdRYW4EVqB-bKvBsK8I6rsZkM,4624
|
|
34
34
|
cuda/cccl/headers/include/cub/util_math.cuh,sha256=RAN9xHGU8X1lmiG2peU85xGyDUL2o3ZcIew_bl4UJqg,4801
|
|
35
35
|
cuda/cccl/headers/include/cub/util_namespace.cuh,sha256=e7M_3M254qT-etSUhfovWX0dbvl2Bc7JG4Po1l7MOeM,6886
|
|
@@ -45,7 +45,7 @@ cuda/cccl/headers/include/cub/agent/agent_for.cuh,sha256=RThiEnWsO0lKelD04LoDNE6
|
|
|
45
45
|
cuda/cccl/headers/include/cub/agent/agent_histogram.cuh,sha256=h9MsPUr_q-guMa5u0oUPhi_avnF5x6vcsVwbL6zycEg,32727
|
|
46
46
|
cuda/cccl/headers/include/cub/agent/agent_merge.cuh,sha256=IcJ1mJiwo8dmN0WOXZfVayMG4xXCwlH1Kx1SjNDl0lY,8283
|
|
47
47
|
cuda/cccl/headers/include/cub/agent/agent_merge_sort.cuh,sha256=TExyaVKQOEM7CYtC2-xgfk6koI8V7aeNtUfExYXLJwA,25399
|
|
48
|
-
cuda/cccl/headers/include/cub/agent/agent_radix_sort_downsweep.cuh,sha256=
|
|
48
|
+
cuda/cccl/headers/include/cub/agent/agent_radix_sort_downsweep.cuh,sha256=VHmY1BEXYzC9SovtTNStWa6jCt7LBM9JvZBPY4HkX2k,26909
|
|
49
49
|
cuda/cccl/headers/include/cub/agent/agent_radix_sort_histogram.cuh,sha256=hkV1oqPBfR2_vgSzKRaqP1HDnUpMqofuoernQv5YfDY,10181
|
|
50
50
|
cuda/cccl/headers/include/cub/agent/agent_radix_sort_onesweep.cuh,sha256=l9eo48gOX5HF9n8OYTI2-gFWijITqWRFXxZsWgUS5mY,23573
|
|
51
51
|
cuda/cccl/headers/include/cub/agent/agent_radix_sort_upsweep.cuh,sha256=RwDPlpJjc8AFyVOasGB_bL2xpYY_aQ_PML31rs2dOlY,17839
|
|
@@ -56,7 +56,7 @@ cuda/cccl/headers/include/cub/agent/agent_scan.cuh,sha256=tjuk3Roc6M9RS0BuL6H7ig
|
|
|
56
56
|
cuda/cccl/headers/include/cub/agent/agent_scan_by_key.cuh,sha256=TzRXSQpN9rib3OQf0u7FKxhWwXh6cv8FnSH6HC5FIZY,17341
|
|
57
57
|
cuda/cccl/headers/include/cub/agent/agent_segmented_radix_sort.cuh,sha256=kIBz9u6-Vm0bq5V72G-30O_E0NgkH3M_4ygn7IeF5ts,9734
|
|
58
58
|
cuda/cccl/headers/include/cub/agent/agent_select_if.cuh,sha256=JKJNLfW26CLFbFNMbUaBObp1RlTBC48FPsppTeta0Jk,41073
|
|
59
|
-
cuda/cccl/headers/include/cub/agent/agent_sub_warp_merge_sort.cuh,sha256=
|
|
59
|
+
cuda/cccl/headers/include/cub/agent/agent_sub_warp_merge_sort.cuh,sha256=yVDnySVDpfKIm8Yx_xyex5WrqYBUKIYW47AXqBLOTJY,11720
|
|
60
60
|
cuda/cccl/headers/include/cub/agent/agent_three_way_partition.cuh,sha256=7LCVBwFl9N8d5472CrPGgN0VWIad_ulWzjYVwrNfC0M,21398
|
|
61
61
|
cuda/cccl/headers/include/cub/agent/agent_topk.cuh,sha256=5rkQLJ8Tnxdxyg5nheH7a_ynVSFcGZKc9EV9aF6vKqI,28011
|
|
62
62
|
cuda/cccl/headers/include/cub/agent/agent_unique_by_key.cuh,sha256=sbzFzdqLkivZ4iLjQcCDODNc8umujIpunUalEtwcJBw,20276
|
|
@@ -66,6 +66,7 @@ cuda/cccl/headers/include/cub/block/block_discontinuity.cuh,sha256=3UTRCjSLupISj
|
|
|
66
66
|
cuda/cccl/headers/include/cub/block/block_exchange.cuh,sha256=XwVOHNww1TVn4zOPmWy46CsbZCTg_J9k4GErWNdMHz0,47256
|
|
67
67
|
cuda/cccl/headers/include/cub/block/block_histogram.cuh,sha256=kmvXX_79Ss7Y_-RGURv04HjdHHM4z7wUPJyEtCjIvZA,15278
|
|
68
68
|
cuda/cccl/headers/include/cub/block/block_load.cuh,sha256=37a9HRQru08MZhARZ1tTnRzZxjGMzGxzmPkWKG1mG_0,47314
|
|
69
|
+
cuda/cccl/headers/include/cub/block/block_load_to_shared.cuh,sha256=j6InXcqrFPyw9tnO7VviIRX0GsDarTt5SiDxwnhvfQs,17688
|
|
69
70
|
cuda/cccl/headers/include/cub/block/block_merge_sort.cuh,sha256=PbLSKqWpA2IC0OwOivgdu--Bs9VKo-Qg7pszY-44hFQ,29036
|
|
70
71
|
cuda/cccl/headers/include/cub/block/block_radix_rank.cuh,sha256=5HcKIADob0M86vuleuI3PdJeoqhhgfAHamLc-LE1MlI,42221
|
|
71
72
|
cuda/cccl/headers/include/cub/block/block_radix_sort.cuh,sha256=_M9wW69dxfiL123yIVxSuDleYdYuBI_a_fC9_NPqAAo,87524
|
|
@@ -90,7 +91,7 @@ cuda/cccl/headers/include/cub/detail/device_double_buffer.cuh,sha256=k5__8aSIJhl
|
|
|
90
91
|
cuda/cccl/headers/include/cub/detail/device_memory_resource.cuh,sha256=t8PEUoXxbv0S_iN8YidpSDt58TCpreEp16A9jJxfkWM,1695
|
|
91
92
|
cuda/cccl/headers/include/cub/detail/fast_modulo_division.cuh,sha256=HzrB07BPiM54jqNumFyEGqzmwSi4RBnfQq-UCRZJNvE,9975
|
|
92
93
|
cuda/cccl/headers/include/cub/detail/integer_utils.cuh,sha256=HnNRxtBNGzp0MWkZjzudoi7TzfPqGi9DGwFDcrgKDX8,3755
|
|
93
|
-
cuda/cccl/headers/include/cub/detail/mdspan_utils.cuh,sha256=
|
|
94
|
+
cuda/cccl/headers/include/cub/detail/mdspan_utils.cuh,sha256=ZDD-I16uHCX9MgO_rYM1b5hBihBs5hSjf9gHsgmvUDE,3857
|
|
94
95
|
cuda/cccl/headers/include/cub/detail/ptx-json-parser.h,sha256=CJVTgSjg3x0qk1oBP_14Penss4S0_OZXeQrnvXI4c74,2684
|
|
95
96
|
cuda/cccl/headers/include/cub/detail/rfa.cuh,sha256=6rjZIiTah_KR8RpYlf5U0_pcKpGmKAiLUoFKCWBRQiw,21682
|
|
96
97
|
cuda/cccl/headers/include/cub/detail/strong_load.cuh,sha256=LwVC01KRWwf974oPNUJSu6nmOKw53uu4urcRNN6bGu4,7225
|
|
@@ -108,13 +109,13 @@ cuda/cccl/headers/include/cub/detail/ptx-json/object.h,sha256=_2zT9YxT4rTokDkH5L
|
|
|
108
109
|
cuda/cccl/headers/include/cub/detail/ptx-json/string.h,sha256=f5caCXM9YHJsvSIKWQKuBPX4Sthm4Q9jLK1DVlSA-vE,2118
|
|
109
110
|
cuda/cccl/headers/include/cub/detail/ptx-json/value.h,sha256=QS2Z_wTqCmxw0uA2vT-4EDKNUG6YvvWeFzw32EzvgJ8,3115
|
|
110
111
|
cuda/cccl/headers/include/cub/device/device_adjacent_difference.cuh,sha256=Uc4vfbjpyxBzmpIAFAEIljgVJYMAU4NP2xd0MOt08RQ,22268
|
|
111
|
-
cuda/cccl/headers/include/cub/device/device_copy.cuh,sha256=
|
|
112
|
+
cuda/cccl/headers/include/cub/device/device_copy.cuh,sha256=20JnA5JlVTTfN-x7YzTWrsSf-YT6NTzxNzuf3fOz_5k,10432
|
|
112
113
|
cuda/cccl/headers/include/cub/device/device_for.cuh,sha256=4mvYrnc_myl1HpYRqc7YaDraz9FpnXotFtJb7_h8bSU,36644
|
|
113
114
|
cuda/cccl/headers/include/cub/device/device_histogram.cuh,sha256=Gvf6nOAfGWdWI8MgoczVwfAq2yA1ZGZc8oTp_Ap7Lfo,62776
|
|
114
115
|
cuda/cccl/headers/include/cub/device/device_memcpy.cuh,sha256=7DDPT1z9o7rfXCcog4wsF4E3HbYoFquaB1-v2XkPRmM,8641
|
|
115
116
|
cuda/cccl/headers/include/cub/device/device_merge.cuh,sha256=dBTC8DJQ2yCppbQsN3fTAlIxUfc9bA6SngoGC7005HY,9355
|
|
116
117
|
cuda/cccl/headers/include/cub/device/device_merge_sort.cuh,sha256=AD9Oi8ick_L_mxoeiKlgtUtYceit66qCTjTq7d_TAX8,35350
|
|
117
|
-
cuda/cccl/headers/include/cub/device/device_partition.cuh,sha256=
|
|
118
|
+
cuda/cccl/headers/include/cub/device/device_partition.cuh,sha256=EvjsN0IxcNGnfaUN_gp6z1SwcWKAoH6XPytpY4vGs4I,25639
|
|
118
119
|
cuda/cccl/headers/include/cub/device/device_radix_sort.cuh,sha256=U0Q1SDQ1m_PpenYD2_7jf60OQ3-IYE-8fByPjE_aJzg,135253
|
|
119
120
|
cuda/cccl/headers/include/cub/device/device_reduce.cuh,sha256=-j7FuxVtk1C00A4rJSTd3lhIYG455mcjUa_vcoFJ0ag,98726
|
|
120
121
|
cuda/cccl/headers/include/cub/device/device_run_length_encode.cuh,sha256=_mbC0J8eVGUFQMiGg2agMmqjBTDwnAaYA-vRO3-atE8,14972
|
|
@@ -129,6 +130,7 @@ cuda/cccl/headers/include/cub/device/dispatch/dispatch_adjacent_difference.cuh,s
|
|
|
129
130
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_advance_iterators.cuh,sha256=s-6taNJl7iWvbmm7KoaSfaveLi_t7nLvWm_hh_4QpKQ,3419
|
|
130
131
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_batch_memcpy.cuh,sha256=KxhlXniACm6fSTtjnymEqxnnSVLRcjJb0peRZJxv41A,28867
|
|
131
132
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_common.cuh,sha256=z4DFJ0KBfuF5u4VvcOr9db6ZQ383Gd3zp7F15rN3WII,1138
|
|
133
|
+
cuda/cccl/headers/include/cub/device/dispatch/dispatch_copy_mdspan.cuh,sha256=Yy6XKQ0q24DI_w6UU8n5MY1P03_F6VPeQHnHKbufjyg,2282
|
|
132
134
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_for.cuh,sha256=9aN-vmVxtBOp7NwD1rDn2-5UiOX5eFKbHj7hYcdeirE,6911
|
|
133
135
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_histogram.cuh,sha256=q4bwHsQ5ja8lpLgKMKzL4tZU1qlPVY7VKnAqSlhtHtk,37705
|
|
134
136
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_merge.cuh,sha256=t0jXS6dZZTeY_wWPyT3zcLGDPwgX0zZZvKWrqcMkrBA,10545
|
|
@@ -141,7 +143,7 @@ cuda/cccl/headers/include/cub/device/dispatch/dispatch_reduce_nondeterministic.c
|
|
|
141
143
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_rle.cuh,sha256=YRg4kw8iijRwy4w2cxqrDdmFNhzE6jw5gmxU61cw-1k,21741
|
|
142
144
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_scan.cuh,sha256=9qwg1sW4ALL4irCSttEEY90ULhzGU9IxqViDq_oLrwY,15920
|
|
143
145
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_scan_by_key.cuh,sha256=EUZRrY_3DNBApoYxFc7a5qVW3CglfnXefgwtTetEug8,18371
|
|
144
|
-
cuda/cccl/headers/include/cub/device/dispatch/dispatch_segmented_sort.cuh,sha256=
|
|
146
|
+
cuda/cccl/headers/include/cub/device/dispatch/dispatch_segmented_sort.cuh,sha256=TyRZke_EpDVK1Ry4t4bxtVFVRtxOsLjS_ny4uuk6EP4,40375
|
|
145
147
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_select_if.cuh,sha256=BXX00FTyHNDcZoXMIF2f56F3idzzwlUtxuY8VKMfD4k,30132
|
|
146
148
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_streaming_reduce.cuh,sha256=C-nYjmMllShplA943PL3WUO8hp22o_rUKz7zY9k6rHk,13453
|
|
147
149
|
cuda/cccl/headers/include/cub/device/dispatch/dispatch_streaming_reduce_by_key.cuh,sha256=-xCzilhgbpw21Hh5XS2RVySb9uO3bdV2FrxgMeLh9VU,15444
|
|
@@ -153,12 +155,12 @@ cuda/cccl/headers/include/cub/device/dispatch/kernels/for_each.cuh,sha256=BSqFME
|
|
|
153
155
|
cuda/cccl/headers/include/cub/device/dispatch/kernels/histogram.cuh,sha256=nLEjb6yfcGWnUscCqtW_RS0uxlHeDfBYuQmSQIH3cnI,17809
|
|
154
156
|
cuda/cccl/headers/include/cub/device/dispatch/kernels/merge_sort.cuh,sha256=lmyCyAIMls8Y42ue2kgxcBnxOj28UgEpOwTaqHXU0dY,11377
|
|
155
157
|
cuda/cccl/headers/include/cub/device/dispatch/kernels/radix_sort.cuh,sha256=GKPQ1K6RhyaiVhPvSD_axU_f2ieeH2gTN-WTBjcgfDI,25353
|
|
156
|
-
cuda/cccl/headers/include/cub/device/dispatch/kernels/reduce.cuh,sha256=
|
|
158
|
+
cuda/cccl/headers/include/cub/device/dispatch/kernels/reduce.cuh,sha256=lYQDT1WLCmLOfEukIcL91nYBXkwRXIjjPEU6OXpWYQg,18859
|
|
157
159
|
cuda/cccl/headers/include/cub/device/dispatch/kernels/scan.cuh,sha256=kgMcT-5uBrycMa5X20WxnTru0CsTNnKQmS65IrYpQrA,6017
|
|
158
160
|
cuda/cccl/headers/include/cub/device/dispatch/kernels/segmented_reduce.cuh,sha256=JsS_FEx0UqdRdiwXJQNITZPI-7rpbMMJRXyxESdNQAQ,11422
|
|
159
|
-
cuda/cccl/headers/include/cub/device/dispatch/kernels/segmented_sort.cuh,sha256=
|
|
161
|
+
cuda/cccl/headers/include/cub/device/dispatch/kernels/segmented_sort.cuh,sha256=OD2lt2dglJdy1djdO99vVJo40JTE124h-4l_9F3sX0k,18953
|
|
160
162
|
cuda/cccl/headers/include/cub/device/dispatch/kernels/three_way_partition.cuh,sha256=kgi_wluYwGgTQss2WmbWei97w26GxZ6rO1nAdtwO9qI,6531
|
|
161
|
-
cuda/cccl/headers/include/cub/device/dispatch/kernels/transform.cuh,sha256=
|
|
163
|
+
cuda/cccl/headers/include/cub/device/dispatch/kernels/transform.cuh,sha256=LDRjpJ0NPWk0phGkhukE2B_PHByASZNcjurupIjFoEc,42999
|
|
162
164
|
cuda/cccl/headers/include/cub/device/dispatch/kernels/unique_by_key.cuh,sha256=FoAPUg-qy0ZBVebLYdcXhYIbrLI_94mYXQvry7mzkh8,5611
|
|
163
165
|
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_adjacent_difference.cuh,sha256=eT9ygd_y3KVtFw7UTBD9dXO_vYGUR9KMsOK8UITlzKs,2861
|
|
164
166
|
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_batch_memcpy.cuh,sha256=xOA7Z-SELQs8kJPPyfhmy7VP7MfIXOHu0I4-0H7IdnM,4778
|
|
@@ -172,11 +174,11 @@ cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_reduce_by_key.cuh,sh
|
|
|
172
174
|
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_run_length_encode.cuh,sha256=xLKJ5JP7CYCx-f_nDVowCFVDJCCFBR9LDZXUBnUCcGA,29487
|
|
173
175
|
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_scan.cuh,sha256=XPhePYmN5tEK1K50_N_rQB8adMJTiXax_2JDkDvOwJ8,26835
|
|
174
176
|
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_scan_by_key.cuh,sha256=m7pm7LLHsfx4eZlkL6pKiJSCD3VoBonug5IwFs3j1zk,48974
|
|
175
|
-
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_segmented_sort.cuh,sha256=
|
|
177
|
+
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_segmented_sort.cuh,sha256=8UrBkFl2MHo1dlEh9auM0HW8U0-ioGDYhVRp2J963UI,15523
|
|
176
178
|
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_select_if.cuh,sha256=HvM1ctVIHC0zklzI5-nsH5Zx0edH5qkoZEt0AnmFLck,68294
|
|
177
179
|
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_three_way_partition.cuh,sha256=vVZwdkQ4GBNHASCZPpohK7ZKFoqfA_wf3drVFmaAIlg,18319
|
|
178
180
|
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_topk.cuh,sha256=jGSiqbtOqdeYetB9NoR8WhGqcmLd0irSZYTZY6s2_0c,2335
|
|
179
|
-
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_transform.cuh,sha256=
|
|
181
|
+
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_transform.cuh,sha256=tvCuPmxRxDcI2QiKYRZgcWq3H5evicd7z3CYZmcDCWY,18940
|
|
180
182
|
cuda/cccl/headers/include/cub/device/dispatch/tuning/tuning_unique_by_key.cuh,sha256=iLo3kHr8s9ssN-pWO-lOANdIQoa2Cv8lJyg49q1Zv7Q,39710
|
|
181
183
|
cuda/cccl/headers/include/cub/grid/grid_even_share.cuh,sha256=CTL12OvUQY2M_8ABKv2B43KLGEbq-g49eOvXHF0nrWk,8573
|
|
182
184
|
cuda/cccl/headers/include/cub/grid/grid_mapping.cuh,sha256=jjZNMVpw9DuzU3Km73WODmR3jAINUxC1jVYxe1nxu-w,4785
|
|
@@ -235,7 +237,7 @@ cuda/cccl/headers/include/cuda/version,sha256=iL3DEQe_1J2CmOiYdI2dJXS1AqdBheGLKq
|
|
|
235
237
|
cuda/cccl/headers/include/cuda/warp,sha256=NgugiIgbgy29CicVVajuiS-3V3ngHHYzK4yD670afts,958
|
|
236
238
|
cuda/cccl/headers/include/cuda/work_stealing,sha256=X5KGdLcgqnu8h8By5kZNYonTYDW11xaDkOE14LRXTd0,924
|
|
237
239
|
cuda/cccl/headers/include/cuda/__algorithm/common.h,sha256=EWzW940z7stIbVg0XmM_t-FS7MWUxpf2z8x76aPZPlA,2541
|
|
238
|
-
cuda/cccl/headers/include/cuda/__algorithm/copy.h,sha256=
|
|
240
|
+
cuda/cccl/headers/include/cuda/__algorithm/copy.h,sha256=DhcQsgZ-M7YiBWyA_P1zGOU4pkCpmd7vsZWIps90_uM,7697
|
|
239
241
|
cuda/cccl/headers/include/cuda/__algorithm/fill.h,sha256=2DmybKUWVRPMM447-L8YCTCKl-e2GSEe8sWKVM_V0Fg,4230
|
|
240
242
|
cuda/cccl/headers/include/cuda/__annotated_ptr/access_property.h,sha256=XjQJHEVC-r8WyMnXy7Tkw0OqoFf-IsGJLvn_ZJojVQQ,6009
|
|
241
243
|
cuda/cccl/headers/include/cuda/__annotated_ptr/access_property_encoding.h,sha256=eBoG2-IoMnmk9Lho4cS1h8-dtDkzA8h5d3H0goVAgMI,7948
|
|
@@ -268,15 +270,15 @@ cuda/cccl/headers/include/cuda/__cmath/uabs.h,sha256=RYhHdQF6X0DQo4f-QUOW0t76btC
|
|
|
268
270
|
cuda/cccl/headers/include/cuda/__complex/complex.h,sha256=1OkDQyQ1nJ7Jg2Z7wjLORpGovLha_lFUUMo-oLMWl2U,8642
|
|
269
271
|
cuda/cccl/headers/include/cuda/__complex/get_real_imag.h,sha256=18KawE2qjXMHD1-1bUkHFwBmvVfRDhweClA1gX0WHVo,2674
|
|
270
272
|
cuda/cccl/headers/include/cuda/__complex/traits.h,sha256=e8G2C8brYOHu9vusCSGWXcQF9ePbQA_BjfjrbUnTMiA,2261
|
|
271
|
-
cuda/cccl/headers/include/cuda/__device/all_devices.h,sha256=
|
|
272
|
-
cuda/cccl/headers/include/cuda/__device/arch_traits.h,sha256=
|
|
273
|
-
cuda/cccl/headers/include/cuda/__device/attributes.h,sha256=
|
|
274
|
-
cuda/cccl/headers/include/cuda/__device/device_ref.h,sha256=
|
|
273
|
+
cuda/cccl/headers/include/cuda/__device/all_devices.h,sha256=dWOf1YijS_esJOSUTWzU0004BlJkp_jbj4FTDpy90nA,6868
|
|
274
|
+
cuda/cccl/headers/include/cuda/__device/arch_traits.h,sha256=RGMIEZ9YNUZzTXwuvr2VKUDKOhPCRDO41v1cFM6ijXI,22830
|
|
275
|
+
cuda/cccl/headers/include/cuda/__device/attributes.h,sha256=QJ-w6XhEPD9NqJGo3Co6z1FzVspO_6DXAkXICIsr4tg,33790
|
|
276
|
+
cuda/cccl/headers/include/cuda/__device/device_ref.h,sha256=Vnx7JO6vQZVXZHpr1sAhaqomjFJs1x15-5uZHjGyq60,5762
|
|
275
277
|
cuda/cccl/headers/include/cuda/__device/physical_device.h,sha256=yb9s09Th7MNsgwmNoqMF2Fc9HjmI-4q5PJ1kxXFohos,5348
|
|
276
|
-
cuda/cccl/headers/include/cuda/__driver/driver_api.h,sha256=
|
|
277
|
-
cuda/cccl/headers/include/cuda/__event/event.h,sha256=
|
|
278
|
-
cuda/cccl/headers/include/cuda/__event/event_ref.h,sha256=
|
|
279
|
-
cuda/cccl/headers/include/cuda/__event/timed_event.h,sha256=
|
|
278
|
+
cuda/cccl/headers/include/cuda/__driver/driver_api.h,sha256=F2hhG7u4zh4GlCPWulQlJLIg1k2x9gQCmGK1iOXqSUU,27293
|
|
279
|
+
cuda/cccl/headers/include/cuda/__event/event.h,sha256=vmCp063NprwqlHoH1ZLnm8Thntp5WIg4DmrNFtwFjdo,5296
|
|
280
|
+
cuda/cccl/headers/include/cuda/__event/event_ref.h,sha256=GOXTivwXbKV2S774CCf5z__QunI7VrTecU8iai65Wlo,4726
|
|
281
|
+
cuda/cccl/headers/include/cuda/__event/timed_event.h,sha256=UOR8N8bfhM6WVVLUudaobe5tXHszAJ3uUdkZUKzgeTY,4235
|
|
280
282
|
cuda/cccl/headers/include/cuda/__execution/determinism.h,sha256=uDwjJNMIIi8GVTt3AYe4laBISTX15IMva-uNvv7TGh4,2691
|
|
281
283
|
cuda/cccl/headers/include/cuda/__execution/output_ordering.h,sha256=Y6Y43lcUMVywGHfpLp27EyL2dhr3hkMV1nokmK4Twe4,2629
|
|
282
284
|
cuda/cccl/headers/include/cuda/__execution/require.h,sha256=7vCIB0qVP_JLbS4C0wN_w3EtiCIeMfySJZzXPK3bfFY,2505
|
|
@@ -299,13 +301,13 @@ cuda/cccl/headers/include/cuda/__iterator/permutation_iterator.h,sha256=YRI-aDK3
|
|
|
299
301
|
cuda/cccl/headers/include/cuda/__iterator/shuffle_iterator.h,sha256=CbX2aUPwtVdMKFm5RLRzEIaNYPf8B-og1ycBcAMFD_s,14885
|
|
300
302
|
cuda/cccl/headers/include/cuda/__iterator/strided_iterator.h,sha256=pNZQ0xlbV5ygEEdafbvbrnI4oLcAqk7_ir3uNnMhM7k,16373
|
|
301
303
|
cuda/cccl/headers/include/cuda/__iterator/tabulate_output_iterator.h,sha256=Z3IauBH57QPIVVDcmKFlUW1ohHh_vjz32B3ar5WfnZw,13218
|
|
302
|
-
cuda/cccl/headers/include/cuda/__iterator/transform_input_output_iterator.h,sha256=
|
|
303
|
-
cuda/cccl/headers/include/cuda/__iterator/transform_iterator.h,sha256=
|
|
304
|
-
cuda/cccl/headers/include/cuda/__iterator/transform_output_iterator.h,sha256=
|
|
304
|
+
cuda/cccl/headers/include/cuda/__iterator/transform_input_output_iterator.h,sha256=eL6BUzTf5Mpa2yrYpIyUPss0bo1GH4iOtVXcPq6z_iU,23535
|
|
305
|
+
cuda/cccl/headers/include/cuda/__iterator/transform_iterator.h,sha256=A9FP4QLJvyZv5RjJr6AdYL-qXgKKPhuwRK1Pie5hNTs,21361
|
|
306
|
+
cuda/cccl/headers/include/cuda/__iterator/transform_output_iterator.h,sha256=hDLW8qzo30O8DtkS2ds0R0ezOzMs8Xa32OH9HdMaco4,19781
|
|
305
307
|
cuda/cccl/headers/include/cuda/__iterator/zip_function.h,sha256=-6PS40hhkugbyeoS1pVcCGlq7kH_ksukHm-gV8cmkKQ,3641
|
|
306
308
|
cuda/cccl/headers/include/cuda/__iterator/zip_iterator.h,sha256=o7T0-yjV63dnS1txc3D2EBKijiXa8cCIsA98SXwtWE8,26015
|
|
307
309
|
cuda/cccl/headers/include/cuda/__latch/latch.h,sha256=Pfq7gOCfVJYrkvuIVM-zVYE8Cfj36HBoqzN7vkDQEEo,1256
|
|
308
|
-
cuda/cccl/headers/include/cuda/__mdspan/host_device_accessor.h,sha256=
|
|
310
|
+
cuda/cccl/headers/include/cuda/__mdspan/host_device_accessor.h,sha256=jR6NQOcBoAQeKrUn5vEnA2WAIGmjeN2wXix-n2Dgo6U,18802
|
|
309
311
|
cuda/cccl/headers/include/cuda/__mdspan/host_device_mdspan.h,sha256=YZ3KB93hHxY0kDnT8PJ_F6HlaUdrFwyLturbyeVtIaw,2731
|
|
310
312
|
cuda/cccl/headers/include/cuda/__mdspan/restrict_accessor.h,sha256=UxLjJIRLYmLK73obKsr8z6jgT1hcnECzThYimghTvzA,4842
|
|
311
313
|
cuda/cccl/headers/include/cuda/__mdspan/restrict_mdspan.h,sha256=x3dkkhhMFfA79686s-KSDdsOWdnv7V4GqfGnU4GlKF4,1966
|
|
@@ -452,11 +454,11 @@ cuda/cccl/headers/include/cuda/__ptx/instructions/generated/trap.h,sha256=s_V8ZN
|
|
|
452
454
|
cuda/cccl/headers/include/cuda/__random/feistel_bijection.h,sha256=CbWVcMWlz56zGg-xFUR440jdAD2d5_HgjnkiN_NuQsY,3577
|
|
453
455
|
cuda/cccl/headers/include/cuda/__random/random_bijection.h,sha256=davQ6b89Fad1KsJbGd6r1LbAPnvb093mP6OzId9fJGc,3438
|
|
454
456
|
cuda/cccl/headers/include/cuda/__runtime/ensure_current_context.h,sha256=icOTAWlmwBX9O-QgxSiaIwrxzy5qN_JjG99_Akn5q9g,3419
|
|
455
|
-
cuda/cccl/headers/include/cuda/__runtime/types.h,sha256=
|
|
457
|
+
cuda/cccl/headers/include/cuda/__runtime/types.h,sha256=udfVxyxUZVH0u3S92ybuklKLHCK8mNZfXivYVPHkLis,1320
|
|
456
458
|
cuda/cccl/headers/include/cuda/__semaphore/counting_semaphore.h,sha256=OwLki7R-9PuPlN2zmPPdy2hb4EFPwMyx6FTaW8CeKC8,1814
|
|
457
459
|
cuda/cccl/headers/include/cuda/__stream/get_stream.h,sha256=WijjVtLqgVQgdprPPrNQ2aLqEyb_6VtkW4stFV02xOA,3692
|
|
458
|
-
cuda/cccl/headers/include/cuda/__stream/stream.h,sha256=
|
|
459
|
-
cuda/cccl/headers/include/cuda/__stream/stream_ref.h,sha256=
|
|
460
|
+
cuda/cccl/headers/include/cuda/__stream/stream.h,sha256=Dbk_l8J32Y530df1IksIpeVTv2S8fZSUcFEHVlcyn_0,4500
|
|
461
|
+
cuda/cccl/headers/include/cuda/__stream/stream_ref.h,sha256=Z5lnUhuJHsbnpAcOxSTCLzmKPxROy3VjbjCsamNodIk,10101
|
|
460
462
|
cuda/cccl/headers/include/cuda/__type_traits/is_floating_point.h,sha256=ACnNG_fB3R0lFy_BHEIacMC3QEpCbHNJvqqMzBht_aA,1834
|
|
461
463
|
cuda/cccl/headers/include/cuda/__type_traits/is_specialization_of.h,sha256=Mq6Qnf48wCfWLj_i8JEziu_j5fqSvOFcJCIf_MSPXIY,1297
|
|
462
464
|
cuda/cccl/headers/include/cuda/__utility/basic_any.h,sha256=8FHj4Od3_BTjImmnjQZy6FEdVK95r0UtIHefTTSXYbE,20618
|
|
@@ -484,7 +486,7 @@ cuda/cccl/headers/include/cuda/__utility/__basic_any/tagged_ptr.h,sha256=8qIvcmw
|
|
|
484
486
|
cuda/cccl/headers/include/cuda/__utility/__basic_any/virtcall.h,sha256=SQ-JWelQTfokeEQPxoLAZPxJ_KDXQRUQtsbWpdW4zOM,6458
|
|
485
487
|
cuda/cccl/headers/include/cuda/__utility/__basic_any/virtual_functions.h,sha256=krlam7waE4-BEGbkJKIUbapecIY85AsfoRTdUoNKgJA,7789
|
|
486
488
|
cuda/cccl/headers/include/cuda/__utility/__basic_any/virtual_ptrs.h,sha256=Brw7UjdidRhzztfd8oAw_BsnbZKWzBaMfznIcv057qM,2566
|
|
487
|
-
cuda/cccl/headers/include/cuda/__utility/__basic_any/virtual_tables.h,sha256
|
|
489
|
+
cuda/cccl/headers/include/cuda/__utility/__basic_any/virtual_tables.h,sha256=-RCdGyDCBylfirgqeIZqB_hmMCOBnuhiGalUCfYqsxA,5857
|
|
488
490
|
cuda/cccl/headers/include/cuda/__warp/lane_mask.h,sha256=PSetRpkqXdlO6zgKCk2AeuLudV9WY2C30htODqPjhdE,11992
|
|
489
491
|
cuda/cccl/headers/include/cuda/__warp/warp_match_all.h,sha256=EHGtP-v55PC9G6A04B_GYQR0G4ZMW2m7aQU4Tp3uduA,2275
|
|
490
492
|
cuda/cccl/headers/include/cuda/__warp/warp_shuffle.h,sha256=QtCsX9_JNCEFOJrm3gvY6whV0SRZYychnXerKQ-bJlQ,11189
|
|
@@ -674,7 +676,7 @@ cuda/cccl/headers/include/cuda/std/__cccl/assert.h,sha256=TXwUvMMM-fsA5kglWTOL2z
|
|
|
674
676
|
cuda/cccl/headers/include/cuda/std/__cccl/attributes.h,sha256=f96Gx2w2Rc5aRBJT9laJPBmyQ8TxXQCLH3IrdKXn7qo,7913
|
|
675
677
|
cuda/cccl/headers/include/cuda/std/__cccl/builtin.h,sha256=Dk47-ypTOcP-i7rZDb_VeV9or75X8jBWogkmVcduLEY,30803
|
|
676
678
|
cuda/cccl/headers/include/cuda/std/__cccl/compiler.h,sha256=o_qdYdip9uhERiRUDR8IAIKYx63g2MvztqJX8_etydQ,11241
|
|
677
|
-
cuda/cccl/headers/include/cuda/std/__cccl/cuda_capabilities.h,sha256=
|
|
679
|
+
cuda/cccl/headers/include/cuda/std/__cccl/cuda_capabilities.h,sha256=jk8sMkaMY8Nyi1JmFBmIQ5M4qOa30DTHgHZiirS_VEQ,1995
|
|
678
680
|
cuda/cccl/headers/include/cuda/std/__cccl/cuda_toolkit.h,sha256=jcmEiDlptp3pNHtC4CIacwTFMByTibelYRob10gMRck,2546
|
|
679
681
|
cuda/cccl/headers/include/cuda/std/__cccl/deprecated.h,sha256=BIMJaGWL79ID_KNGpcqOxlmpmyfxWtxmAOrKy72s4kA,3681
|
|
680
682
|
cuda/cccl/headers/include/cuda/std/__cccl/diagnostic.h,sha256=8X2p_AtDmLJzc8ezEKOnsuaxVn9UEq2nsSvZhSBuj_k,6273
|
|
@@ -685,7 +687,7 @@ cuda/cccl/headers/include/cuda/std/__cccl/execution_space.h,sha256=ONADYrPRRA5lL
|
|
|
685
687
|
cuda/cccl/headers/include/cuda/std/__cccl/extended_data_types.h,sha256=273MHj7TNERIo_qrOWDjC_IerCSX9BeXi0Fxx1ns3FU,6268
|
|
686
688
|
cuda/cccl/headers/include/cuda/std/__cccl/is_non_narrowing_convertible.h,sha256=HgQZD4kcvri1CCbwcGCFrOhnxdRua7PThB8OYqqnens,2951
|
|
687
689
|
cuda/cccl/headers/include/cuda/std/__cccl/os.h,sha256=Y5o5YytMJ6znCNCOXiGoNwzUGUpnYS62kzYiEnhzSaI,1437
|
|
688
|
-
cuda/cccl/headers/include/cuda/std/__cccl/preprocessor.h,sha256=
|
|
690
|
+
cuda/cccl/headers/include/cuda/std/__cccl/preprocessor.h,sha256=xQehpJINZD83AN7bvY9yA7hfbGd_WWT0OWD8mfvcsy0,81151
|
|
689
691
|
cuda/cccl/headers/include/cuda/std/__cccl/prologue.h,sha256=KTJbBusiqzcpFSJVnoJcQPjGc09BKR7JKYjvShBse5E,7500
|
|
690
692
|
cuda/cccl/headers/include/cuda/std/__cccl/ptx_isa.h,sha256=j7Gkjys1XtNzP0vAPcKFWYf8f2PIyD6SEkSVZhWS80k,10846
|
|
691
693
|
cuda/cccl/headers/include/cuda/std/__cccl/rtti.h,sha256=UlssLmfoXOGbFWYdYVpKeobGkRXwgZviMOHZ77fpQ5Q,2280
|
|
@@ -723,11 +725,11 @@ cuda/cccl/headers/include/cuda/std/__cmath/inverse_hyperbolic_functions.h,sha256
|
|
|
723
725
|
cuda/cccl/headers/include/cuda/std/__cmath/inverse_trigonometric_functions.h,sha256=X3EcBSFIsKvyzj9AxUZbgixMhrw1dw6uOAaAg1JmdkM,11759
|
|
724
726
|
cuda/cccl/headers/include/cuda/std/__cmath/isfinite.h,sha256=Zjr3BC3FU7C0Q-84zglSE9G9tCKExr7rfXmOXXUlpRE,5498
|
|
725
727
|
cuda/cccl/headers/include/cuda/std/__cmath/isinf.h,sha256=VmYfXvvr7AoqphCV7xUIuyPP57woyCoQWscnl1IKIoI,6719
|
|
726
|
-
cuda/cccl/headers/include/cuda/std/__cmath/isnan.h,sha256=
|
|
728
|
+
cuda/cccl/headers/include/cuda/std/__cmath/isnan.h,sha256=SmlAOXjpvhugky_NnWZiFoSjimXkiFW-lpVhQbil_Ik,5915
|
|
727
729
|
cuda/cccl/headers/include/cuda/std/__cmath/isnormal.h,sha256=Hj_Z55-Qf0R5Gq67Q7xHpUGsQgTkAN8_gn8PoKLsoxo,4218
|
|
728
730
|
cuda/cccl/headers/include/cuda/std/__cmath/lerp.h,sha256=LZSL9SlJ3n6fWahtzquQJL4mw5olNRzh201_1yIyZTY,3205
|
|
729
731
|
cuda/cccl/headers/include/cuda/std/__cmath/logarithms.h,sha256=RPBS5sxPTdtpajNt7ruHm4aH8s3ShVgQzCpMCZJB3v4,16294
|
|
730
|
-
cuda/cccl/headers/include/cuda/std/__cmath/min_max.h,sha256=
|
|
732
|
+
cuda/cccl/headers/include/cuda/std/__cmath/min_max.h,sha256=BfgYQzl-p_qDX9kGIAQ2LyxfoZFSLfbefB9AZq2M-K8,9433
|
|
731
733
|
cuda/cccl/headers/include/cuda/std/__cmath/modulo.h,sha256=4mAK34FiEKSpSa4I92d1PvHeSiTgl54XDYSAcCWZkoQ,7231
|
|
732
734
|
cuda/cccl/headers/include/cuda/std/__cmath/nan.h,sha256=2d3DMUrKdptdbF-d10VhQzuXPtqCy4F5hsd4rvg9d2Y,1572
|
|
733
735
|
cuda/cccl/headers/include/cuda/std/__cmath/remainder.h,sha256=9fGnBbl8kHIYZDMkubikW9v1mYjLi0NbbC3ec_Mmngk,7853
|
|
@@ -758,7 +760,7 @@ cuda/cccl/headers/include/cuda/std/__concepts/class_or_enum.h,sha256=cPircg_nGk-
|
|
|
758
760
|
cuda/cccl/headers/include/cuda/std/__concepts/common_reference_with.h,sha256=jwErifY8Abi3rt7giSnYw0GyO0iRYtx9YhjQ0TOw22Q,2568
|
|
759
761
|
cuda/cccl/headers/include/cuda/std/__concepts/common_with.h,sha256=rfV006qRpqrMSdj0u2KpHHCvLYIT5HZtG7t3SChYqQg,3430
|
|
760
762
|
cuda/cccl/headers/include/cuda/std/__concepts/concept_macros.h,sha256=oOaIrzl9XeOs5uoxMr5-fRSo51fcjOUWCesmgOg8dOc,16899
|
|
761
|
-
cuda/cccl/headers/include/cuda/std/__concepts/constructible.h,sha256=
|
|
763
|
+
cuda/cccl/headers/include/cuda/std/__concepts/constructible.h,sha256=UCA7hI9OdWn9u2s62nKv5spHiPoUZwWVQgc09L2dNYo,7057
|
|
762
764
|
cuda/cccl/headers/include/cuda/std/__concepts/convertible_to.h,sha256=t56UCLh7aPR7MVHRvXqaFw-ML8IHnxxYroz6NrHfH7s,2648
|
|
763
765
|
cuda/cccl/headers/include/cuda/std/__concepts/copyable.h,sha256=hr1sSjwXIailBOA93irjUSMUmLy-sE_v83HksREpVvU,1943
|
|
764
766
|
cuda/cccl/headers/include/cuda/std/__concepts/derived_from.h,sha256=Zsn4a9MlU_QZPpiwNbLQ-USZoTFu62sDGP5DbDr3Zkg,1854
|
|
@@ -782,9 +784,8 @@ cuda/cccl/headers/include/cuda/std/__cstdlib/div.h,sha256=bk4s50xcjk06lwXSDnTZSS
|
|
|
782
784
|
cuda/cccl/headers/include/cuda/std/__cstdlib/malloc.h,sha256=rBHpL0N8N5KVo44pL6V_adXdM5_R-MzBCl4FSIobgZo,1839
|
|
783
785
|
cuda/cccl/headers/include/cuda/std/__cstring/memcpy.h,sha256=7VZ13EOWGOAPHbnaDH8RHfC2mWTytu1ZRG6lIc1x5tk,2187
|
|
784
786
|
cuda/cccl/headers/include/cuda/std/__cstring/memset.h,sha256=ItG5Ne9zCGg9G9bCWNBK3lQcrMkD-7dd06N5Hn2Rzuw,1401
|
|
785
|
-
cuda/cccl/headers/include/cuda/std/__cuda/api_wrapper.h,sha256=
|
|
786
|
-
cuda/cccl/headers/include/cuda/std/
|
|
787
|
-
cuda/cccl/headers/include/cuda/std/__exception/cuda_error.h,sha256=OaU1hMBzeGjSEaTYWGwzEcnOPvXRs8VJpV94PSAp04o,4267
|
|
787
|
+
cuda/cccl/headers/include/cuda/std/__cuda/api_wrapper.h,sha256=FFi3hwhnxP0fqmp-Nwbq1Zq5dYhMwDBDmooX8At2oPw,3194
|
|
788
|
+
cuda/cccl/headers/include/cuda/std/__exception/cuda_error.h,sha256=XLcyo9C1RLjUZSFDaYR7Gwjx_HUvKZ9T4uEZ68T-r7c,3942
|
|
788
789
|
cuda/cccl/headers/include/cuda/std/__exception/terminate.h,sha256=V4XLgzNEybT3oslvIi4t-1LH7AJIr4RJHM3MGRkMUc4,2045
|
|
789
790
|
cuda/cccl/headers/include/cuda/std/__execution/env.h,sha256=TDuI82xwHiZMJ5hoV7pcGTOj_L4OQo01sISKDVJqyw4,17549
|
|
790
791
|
cuda/cccl/headers/include/cuda/std/__execution/policy.h,sha256=llna7Z_OMdOWX-E_zGG1OSSrItyDUHHf0yyM0q2qUHs,2981
|
|
@@ -794,12 +795,12 @@ cuda/cccl/headers/include/cuda/std/__expected/expected_base.h,sha256=3zT836AsP3x
|
|
|
794
795
|
cuda/cccl/headers/include/cuda/std/__expected/unexpect.h,sha256=DCaz2bMFzZm5pMjfKbN-ACvo1LkrQIC0EnuHp2nIKCo,1128
|
|
795
796
|
cuda/cccl/headers/include/cuda/std/__expected/unexpected.h,sha256=0FnuX5EeLEH6GNQ0s7JYKyKqa0qLm-Ko5JJhhU88NFQ,5775
|
|
796
797
|
cuda/cccl/headers/include/cuda/std/__floating_point/arithmetic.h,sha256=bLaBvtp4Q8ykmQMEPiY5QnozCpNfA7MM6SICmXyKLH4,1739
|
|
797
|
-
cuda/cccl/headers/include/cuda/std/__floating_point/cast.h,sha256=
|
|
798
|
+
cuda/cccl/headers/include/cuda/std/__floating_point/cast.h,sha256=JFr9JzDJlnjAQBH3DH6R-cZ29DxNh2F4htoCm78rXt8,26786
|
|
798
799
|
cuda/cccl/headers/include/cuda/std/__floating_point/cccl_fp.h,sha256=RyUFj8-seak0Tii00whkZX0BKWJnJZPBDsTqd0O8-gM,4058
|
|
799
800
|
cuda/cccl/headers/include/cuda/std/__floating_point/common_type.h,sha256=1_0tPMuy10VD7DZUsW0ebADG2IAWYYbqkuO4wf36DBo,1870
|
|
800
801
|
cuda/cccl/headers/include/cuda/std/__floating_point/constants.h,sha256=mZeW0dFr9FWjGhDUITgrEy62-UBW01aE8eyNEslefHU,10708
|
|
801
802
|
cuda/cccl/headers/include/cuda/std/__floating_point/conversion_rank_order.h,sha256=nE8m8-j3eCDKxP2I0SlHKv6k0CiAd9TmJdxN3bNF5o0,4632
|
|
802
|
-
cuda/cccl/headers/include/cuda/std/__floating_point/cuda_fp_types.h,sha256=
|
|
803
|
+
cuda/cccl/headers/include/cuda/std/__floating_point/cuda_fp_types.h,sha256=zOjZ2KxQZgqUYiHv2gLrdPO1WB06nyrbth_82HUJKl4,5747
|
|
803
804
|
cuda/cccl/headers/include/cuda/std/__floating_point/decompose.h,sha256=soQgkVESOjiYBIByaHk8tR2WyVi-mDbeCpI_ptR2RIY,2935
|
|
804
805
|
cuda/cccl/headers/include/cuda/std/__floating_point/format.h,sha256=tUJ_X5KY4ytcLOdSBHL4Y7R9ulPC0bGKCkipdPu19Ek,4648
|
|
805
806
|
cuda/cccl/headers/include/cuda/std/__floating_point/fp.h,sha256=3yTQ7MBaZB6boGIFEfPOSRUW5EBnzaMcNW1Lz5qYsiM,1646
|
|
@@ -930,7 +931,7 @@ cuda/cccl/headers/include/cuda/std/__mdspan/extents.h,sha256=722nnGd1n1OO2bqHoMs
|
|
|
930
931
|
cuda/cccl/headers/include/cuda/std/__mdspan/layout_left.h,sha256=heVd2rta5daK54HGyl8MwfD_cdXjM1dgcDO6KehoYOw,13203
|
|
931
932
|
cuda/cccl/headers/include/cuda/std/__mdspan/layout_right.h,sha256=NAtuBZbebmw71wg1NlDH0MU6HPxo0s5VSRh3Xo5kbWg,12930
|
|
932
933
|
cuda/cccl/headers/include/cuda/std/__mdspan/layout_stride.h,sha256=OCthZ407y3Pjb3xOV4YkX4lX_iGZKSTa6qtEScv-2D0,22836
|
|
933
|
-
cuda/cccl/headers/include/cuda/std/__mdspan/mdspan.h,sha256=
|
|
934
|
+
cuda/cccl/headers/include/cuda/std/__mdspan/mdspan.h,sha256=Rg7DB7AdUrjyCHpIY7D2TEuYRnnCa9ilGZBAjnXaDFI,23764
|
|
934
935
|
cuda/cccl/headers/include/cuda/std/__mdspan/submdspan_extents.h,sha256=_wKm4y8U_yI_VtMygfdx7KdZpBF8eT7kdoj9St0rReM,7933
|
|
935
936
|
cuda/cccl/headers/include/cuda/std/__mdspan/submdspan_helper.h,sha256=k4lDufa1j211ynUtIXCIAKmDF1kloy9o6SjfxFxOT1M,6676
|
|
936
937
|
cuda/cccl/headers/include/cuda/std/__mdspan/submdspan_mapping.h,sha256=1p1TJYhmIlTHTW4-JTxQ2cK1Cy6au75cVa9MPQAEU84,13492
|
|
@@ -1156,7 +1157,7 @@ cuda/cccl/headers/include/cuda/std/__type_traits/maybe_const.h,sha256=V-9UmFvz5k
|
|
|
1156
1157
|
cuda/cccl/headers/include/cuda/std/__type_traits/nat.h,sha256=0UTbwx822JE4hmq3IzrxzZ93GXiSWsgOqGRxuuVIC4I,1189
|
|
1157
1158
|
cuda/cccl/headers/include/cuda/std/__type_traits/negation.h,sha256=ca_hjPz-ggJR7CV-lFHdp3YE04g8PWnC7-MzdUjAgxA,1263
|
|
1158
1159
|
cuda/cccl/headers/include/cuda/std/__type_traits/num_bits.h,sha256=mIs-QnseVhBnQr-jPoOsczpW1fBpgZO955Y8vOsHJHQ,3509
|
|
1159
|
-
cuda/cccl/headers/include/cuda/std/__type_traits/promote.h,sha256=
|
|
1160
|
+
cuda/cccl/headers/include/cuda/std/__type_traits/promote.h,sha256=Ooz9ADrakg_u1Pgi-drI1NQ6lGVQcFjYjHnU1_HOX4c,4689
|
|
1160
1161
|
cuda/cccl/headers/include/cuda/std/__type_traits/rank.h,sha256=b_4g5AJfJltva3GLYTc0gomFsIJKAu1x_7zV71v5QtA,1848
|
|
1161
1162
|
cuda/cccl/headers/include/cuda/std/__type_traits/reference_constructs_from_temporary.h,sha256=M_eGuPu9o2s5dncCJqj69NmFlkYIQbS2HD8A3TNt2kU,2033
|
|
1162
1163
|
cuda/cccl/headers/include/cuda/std/__type_traits/reference_converts_from_temporary.h,sha256=OxaLPOGGNDRPyDtx4fHzY3s2pUMM2FDDTaYs01p6KgE,2005
|
|
@@ -1586,7 +1587,7 @@ cuda/cccl/headers/include/thrust/system/cuda/detail/sequence.h,sha256=WlrxNr902r
|
|
|
1586
1587
|
cuda/cccl/headers/include/thrust/system/cuda/detail/set_operations.h,sha256=vK0RlQu8g_i8QMRpSaGBP-IT3IWzXAqNbvcXEn9Upq8,52020
|
|
1587
1588
|
cuda/cccl/headers/include/thrust/system/cuda/detail/sort.h,sha256=xTjd4XOiULYo8J4AkcVV9hnHelTtk0mkVyAiEVLvHoY,18201
|
|
1588
1589
|
cuda/cccl/headers/include/thrust/system/cuda/detail/swap_ranges.h,sha256=jfWEnpc4w5iPBupwzqv3yfvn6v00kGz5j0fcT_rGRj0,3686
|
|
1589
|
-
cuda/cccl/headers/include/thrust/system/cuda/detail/tabulate.h,sha256=
|
|
1590
|
+
cuda/cccl/headers/include/thrust/system/cuda/detail/tabulate.h,sha256=9Tmu6NXI5kslsUsKz9HeIzy-Rtk4B8jAVOSm9IoCnYw,2847
|
|
1590
1591
|
cuda/cccl/headers/include/thrust/system/cuda/detail/temporary_buffer.h,sha256=Bv1Qu7D-lM2mQp_WxW46Jz9qKJqbqppCvd3J0IMdy8w,3931
|
|
1591
1592
|
cuda/cccl/headers/include/thrust/system/cuda/detail/terminate.h,sha256=rHJYuunyz_Gpwva7-gxAhiJeH2gWuSZ8HLk5nvgMark,2357
|
|
1592
1593
|
cuda/cccl/headers/include/thrust/system/cuda/detail/transform.h,sha256=_aP48o_G6pC6bx5r_HabgFZgdjTTk8XmV7Qjwl1sUMU,15009
|
|
@@ -1922,13 +1923,13 @@ cuda/cccl/headers/include/thrust/type_traits/is_operator_less_or_greater_functio
|
|
|
1922
1923
|
cuda/cccl/headers/include/thrust/type_traits/is_operator_plus_function_object.h,sha256=VozD7Jky8bZbMu8hUyFI5nvZ9k2G8qfwmMs3WTVasLc,3131
|
|
1923
1924
|
cuda/cccl/headers/include/thrust/type_traits/is_trivially_relocatable.h,sha256=YJ04SsReINsWKJ15G-oRAFaqbQH-pUpTi985E-NOj28,12611
|
|
1924
1925
|
cuda/cccl/headers/include/thrust/type_traits/logical_metafunctions.h,sha256=kZCeqwTLghrrFmja4IPZ72VB2OEVcbRDQ1Qfh8ZJtoo,1302
|
|
1925
|
-
cuda/cccl/headers/include/thrust/type_traits/unwrap_contiguous_iterator.h,sha256=
|
|
1926
|
+
cuda/cccl/headers/include/thrust/type_traits/unwrap_contiguous_iterator.h,sha256=c9NBMh7DjeFxZYYFudR8gJ-TLKLdJunGF-M1bnGyEMo,2181
|
|
1926
1927
|
cuda/cccl/parallel/__init__.py,sha256=8Cytpro5zzZAs8mB14pQNjFZN_JILu8ofNdP8WTXf_4,201
|
|
1927
1928
|
cuda/cccl/parallel/experimental/.gitignore,sha256=BwlvxEVn0ILdpPouTCCpeeAIodW7dzdWGCfC-b6JDDI,100
|
|
1928
|
-
cuda/cccl/parallel/experimental/__init__.py,sha256=
|
|
1929
|
+
cuda/cccl/parallel/experimental/__init__.py,sha256=3O7SlSukgVG8qwa0xcFtGlEcbP6DGl-O50_rqPQdreY,1735
|
|
1929
1930
|
cuda/cccl/parallel/experimental/_bindings.py,sha256=U0rTJw9g7YF-szUaT6cEmF4x5nRH8XUtn6UfJiZetCo,3331
|
|
1930
|
-
cuda/cccl/parallel/experimental/_bindings.pyi,sha256=
|
|
1931
|
-
cuda/cccl/parallel/experimental/_bindings_impl.pyx,sha256=
|
|
1931
|
+
cuda/cccl/parallel/experimental/_bindings.pyi,sha256=axE5MoXMkF7BraWZPciyA8xAjP_w07BljjrizYfXWMU,9682
|
|
1932
|
+
cuda/cccl/parallel/experimental/_bindings_impl.pyx,sha256=ElGMh1zP-cWMzDCzyJ2xwH7UU8W4X9Sf4xa41HLE-ME,69001
|
|
1932
1933
|
cuda/cccl/parallel/experimental/_caching.py,sha256=jKsc1PJx9RGA0uO1iPRFL99LQYLEzasxfo4Fq9bjqKs,1928
|
|
1933
1934
|
cuda/cccl/parallel/experimental/_cccl_interop.py,sha256=kUApjlFqxAjNU0qHyLjKnaUfqrjM7WZ--rsKOBfKecU,13628
|
|
1934
1935
|
cuda/cccl/parallel/experimental/numba_utils.py,sha256=YOMMIlxOaiCsdoyM9dW-icEWXnbUa8W01R7MlZ3qGls,1641
|
|
@@ -1938,25 +1939,26 @@ cuda/cccl/parallel/experimental/typing.py,sha256=8-nKWA2irjOok0J58xEqjYrL3XMBxU9
|
|
|
1938
1939
|
cuda/cccl/parallel/experimental/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1939
1940
|
cuda/cccl/parallel/experimental/_utils/protocols.py,sha256=wi7zM23BIKSEO2oB7ZowJix7wO24H3oWCkjwWHDN25E,3691
|
|
1940
1941
|
cuda/cccl/parallel/experimental/_utils/temp_storage_buffer.py,sha256=tqpYtb0063Vd6mhzWgz9AZQ3bWzj3xq573yef_X_j2w,2934
|
|
1941
|
-
cuda/cccl/parallel/experimental/algorithms/__init__.py,sha256=
|
|
1942
|
+
cuda/cccl/parallel/experimental/algorithms/__init__.py,sha256=dPvc2t0_TPXvAsjnnNgwSsy_NFkT-U9jtA8FX3xlyCc,2069
|
|
1942
1943
|
cuda/cccl/parallel/experimental/algorithms/_histogram.py,sha256=InJyvorw649ZNZpzi6TwtSWQrIae7vZJYTeBEIPxoso,8031
|
|
1943
1944
|
cuda/cccl/parallel/experimental/algorithms/_merge_sort.py,sha256=iYVdlgaUNlDF_jV3-fQC3fR1qAX4iqAbgjYuYQMAdYs,7707
|
|
1944
1945
|
cuda/cccl/parallel/experimental/algorithms/_radix_sort.py,sha256=uNeGQ0YpYwWs1dj6rnJcN2x3nQh2QVVnsHgsWrtsf_g,10493
|
|
1945
|
-
cuda/cccl/parallel/experimental/algorithms/_reduce.py,sha256=
|
|
1946
|
-
cuda/cccl/parallel/experimental/algorithms/_scan.py,sha256=
|
|
1946
|
+
cuda/cccl/parallel/experimental/algorithms/_reduce.py,sha256=3lmrzd9yH75UB8uEr45i9HubaXmTVNVNbO7wxdb0rOs,5891
|
|
1947
|
+
cuda/cccl/parallel/experimental/algorithms/_scan.py,sha256=Da0qLnZspaaSDjygLYSMBXc8g9u_20zZw1kLSZKvcM4,8470
|
|
1947
1948
|
cuda/cccl/parallel/experimental/algorithms/_segmented_reduce.py,sha256=ata8z07CPpBVOTlU7919dh1yOVvre5J_X1FYe2C2s9g,8570
|
|
1949
|
+
cuda/cccl/parallel/experimental/algorithms/_three_way_partition.py,sha256=BcvsH1CXDYrqddt7dCRpd-TzVTryYX-atauf8hc4yDY,10086
|
|
1948
1950
|
cuda/cccl/parallel/experimental/algorithms/_transform.py,sha256=p0IzF8_d_NRNzHkZb9kNkOgygs7PJd6xMzJ23KoSm3Y,10375
|
|
1949
1951
|
cuda/cccl/parallel/experimental/algorithms/_unique_by_key.py,sha256=qKoU-nipZp8k9ds2GbLwIIk-74CJHx5mJYs1U1jHpEI,8702
|
|
1950
1952
|
cuda/cccl/parallel/experimental/cccl/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1951
|
-
cuda/cccl/parallel/experimental/cu12/_bindings_impl.cpython-313-aarch64-linux-gnu.so,sha256=
|
|
1952
|
-
cuda/cccl/parallel/experimental/cu12/cccl/libcccl.c.parallel.so,sha256=
|
|
1953
|
-
cuda/cccl/parallel/experimental/cu13/_bindings_impl.cpython-313-aarch64-linux-gnu.so,sha256=
|
|
1954
|
-
cuda/cccl/parallel/experimental/cu13/cccl/libcccl.c.parallel.so,sha256=
|
|
1953
|
+
cuda/cccl/parallel/experimental/cu12/_bindings_impl.cpython-313-aarch64-linux-gnu.so,sha256=OgYQjp4yPEmapvxeQ-kCHds5JY2Ap96ZQxyr5KEAilE,678224
|
|
1954
|
+
cuda/cccl/parallel/experimental/cu12/cccl/libcccl.c.parallel.so,sha256=JOZNlYhuH6iZu1Y2BvdSEqlB0N7KBx_RjszCxl3iDzY,1989664
|
|
1955
|
+
cuda/cccl/parallel/experimental/cu13/_bindings_impl.cpython-313-aarch64-linux-gnu.so,sha256=OgYQjp4yPEmapvxeQ-kCHds5JY2Ap96ZQxyr5KEAilE,678224
|
|
1956
|
+
cuda/cccl/parallel/experimental/cu13/cccl/libcccl.c.parallel.so,sha256=hlWxkvpvP0yJJ_ol80R1DfMKv6iFXeZ7UGLAj6avg4k,1924168
|
|
1955
1957
|
cuda/cccl/parallel/experimental/iterators/__init__.py,sha256=o5MVmR79Ad8VSAgeJX0fdiZgAIACbvaJGzLD0sHwLYg,389
|
|
1956
1958
|
cuda/cccl/parallel/experimental/iterators/_factories.py,sha256=Zr-qWGLAkkqfENbP4l7v3pe_LthhY9jxkMt0DmLFF3I,6765
|
|
1957
1959
|
cuda/cccl/parallel/experimental/iterators/_iterators.py,sha256=YmsdwhQ_HIbbQY9kR77Goh0v2P1lIixpqIjBzp2g1ZI,17718
|
|
1958
1960
|
cuda/cccl/parallel/experimental/iterators/_zip_iterator.py,sha256=PkN-1V_eBpPX9qZQxpla2WxdWYdBZEK-KMt1bflHsFY,7028
|
|
1959
|
-
cuda_cccl-0.
|
|
1960
|
-
cuda_cccl-0.
|
|
1961
|
-
cuda_cccl-0.
|
|
1962
|
-
cuda_cccl-0.
|
|
1961
|
+
cuda_cccl-0.3.0.dist-info/METADATA,sha256=gr2SFfD7ZillFjbYYh8cv1zUgf1R7K3FupvkwZImNp4,1668
|
|
1962
|
+
cuda_cccl-0.3.0.dist-info/WHEEL,sha256=s8KPQ325Xnxh999mGXJUilqijS_wZ6voeHs6NWDyJeo,119
|
|
1963
|
+
cuda_cccl-0.3.0.dist-info/RECORD,,
|
|
1964
|
+
cuda_cccl-0.3.0.dist-info/licenses/LICENSE,sha256=1Tb5TKkY_yEJ7ahFvkRBa73zh6osNbeQWmGPXWi9pqA,14
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
//===----------------------------------------------------------------------===//
|
|
2
|
-
//
|
|
3
|
-
// Part of libcu++, the C++ Standard Library for your entire system,
|
|
4
|
-
// under the Apache License v2.0 with LLVM Exceptions.
|
|
5
|
-
// See https://llvm.org/LICENSE.txt for license information.
|
|
6
|
-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
7
|
-
// SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES.
|
|
8
|
-
//
|
|
9
|
-
//===----------------------------------------------------------------------===//
|
|
10
|
-
|
|
11
|
-
#ifndef _CUDA__STD__CUDA_ENSURE_CURRENT_DEVICE_H
|
|
12
|
-
#define _CUDA__STD__CUDA_ENSURE_CURRENT_DEVICE_H
|
|
13
|
-
|
|
14
|
-
#include <cuda/std/detail/__config>
|
|
15
|
-
|
|
16
|
-
#if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC)
|
|
17
|
-
# pragma GCC system_header
|
|
18
|
-
#elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG)
|
|
19
|
-
# pragma clang system_header
|
|
20
|
-
#elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC)
|
|
21
|
-
# pragma system_header
|
|
22
|
-
#endif // no system header
|
|
23
|
-
|
|
24
|
-
#if _CCCL_HAS_CTK()
|
|
25
|
-
|
|
26
|
-
# include <cuda/std/__cuda/api_wrapper.h>
|
|
27
|
-
|
|
28
|
-
# include <cuda/std/__cccl/prologue.h>
|
|
29
|
-
|
|
30
|
-
_CCCL_BEGIN_NAMESPACE_CUDA
|
|
31
|
-
|
|
32
|
-
# if !_CCCL_COMPILER(NVRTC)
|
|
33
|
-
|
|
34
|
-
//! @brief `__ensure_current_device` is a simple helper that the current device is set to the right one.
|
|
35
|
-
//! Only changes the current device if the target device is not the current one
|
|
36
|
-
struct __ensure_current_device
|
|
37
|
-
{
|
|
38
|
-
int __target_device_ = 0;
|
|
39
|
-
int __original_device_ = 0;
|
|
40
|
-
|
|
41
|
-
//! @brief Queries the current device and if that is different than \p __target_device sets the current device to
|
|
42
|
-
//! \p __target_device
|
|
43
|
-
__ensure_current_device(const int __target_device)
|
|
44
|
-
: __target_device_(__target_device)
|
|
45
|
-
{
|
|
46
|
-
_CCCL_TRY_CUDA_API(::cudaGetDevice, "Failed to query current device", &__original_device_);
|
|
47
|
-
if (__original_device_ != __target_device_)
|
|
48
|
-
{
|
|
49
|
-
_CCCL_TRY_CUDA_API(::cudaSetDevice, "Failed to set device", __target_device_);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
//! @brief If the \p __original_device was not equal to \p __target_device sets the current device back to
|
|
54
|
-
//! \p __original_device
|
|
55
|
-
~__ensure_current_device()
|
|
56
|
-
{
|
|
57
|
-
if (__original_device_ != __target_device_)
|
|
58
|
-
{
|
|
59
|
-
_CCCL_LOG_CUDA_API(::cudaSetDevice, "Failed to set device", __original_device_);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
};
|
|
63
|
-
|
|
64
|
-
# endif // !_CCCL_COMPILER(NVRTC)
|
|
65
|
-
|
|
66
|
-
_CCCL_END_NAMESPACE_CUDA
|
|
67
|
-
|
|
68
|
-
# include <cuda/std/__cccl/epilogue.h>
|
|
69
|
-
|
|
70
|
-
#endif // _CCCL_HAS_CTK()
|
|
71
|
-
|
|
72
|
-
#endif //_CUDA__STD__CUDA_ENSURE_CURRENT_DEVICE_H
|
|
File without changes
|
|
File without changes
|