@@ -1296,9 +1296,6 @@ public:
12961296 static_assert (!::cuda::std::is_same_v<requested_determinism_t , ::cuda::execution::determinism::gpu_to_gpu_t >,
12971297 " gpu_to_gpu determinism is not supported" );
12981298
1299- // TODO(NaderAlAwar): Relax this once non-deterministic implementation for min / max is available
1300- using determinism_t = ::cuda::execution::determinism::run_to_run_t ;
1301-
13021299 // Query relevant properties from the environment
13031300 auto stream = ::cuda::std::execution::__query_or (env, ::cuda::get_stream, ::cuda::stream_ref{cudaStream_t{}});
13041301 auto mr =
@@ -1307,9 +1304,6 @@ public:
13071304 void * d_temp_storage = nullptr ;
13081305 size_t temp_storage_bytes = 0 ;
13091306
1310- using tuning_t =
1311- ::cuda::std::execution::__query_result_or_t <EnvT, ::cuda::execution::__get_tuning_t , ::cuda::std::execution::env<>>;
1312-
13131307 // Reduction operation
13141308 using ReduceOpT = cub::ArgMin;
13151309 using InputValueT = cub::detail::it_value_t <InputIteratorT>;
@@ -2092,9 +2086,6 @@ public:
20922086 static_assert (!::cuda::std::is_same_v<requested_determinism_t , ::cuda::execution::determinism::gpu_to_gpu_t >,
20932087 " gpu_to_gpu determinism is not supported" );
20942088
2095- // TODO(NaderAlAwar): Relax this once non-deterministic implementation for min / max is available
2096- using determinism_t = ::cuda::execution::determinism::run_to_run_t ;
2097-
20982089 // Query relevant properties from the environment
20992090 auto stream = ::cuda::std::execution::__query_or (env, ::cuda::get_stream, ::cuda::stream_ref{cudaStream_t{}});
21002091 auto mr =
@@ -2103,9 +2094,6 @@ public:
21032094 void * d_temp_storage = nullptr ;
21042095 size_t temp_storage_bytes = 0 ;
21052096
2106- using tuning_t =
2107- ::cuda::std::execution::__query_result_or_t <EnvT, ::cuda::execution::__get_tuning_t , ::cuda::std::execution::env<>>;
2108-
21092097 // Reduction operation
21102098 using ReduceOpT = cub::ArgMax;
21112099 using InputValueT = cub::detail::it_value_t <InputIteratorT>;
0 commit comments