Skip to content

Commit cb31c65

Browse files
committed
Remove any references to determinism
1 parent 40a08c5 commit cb31c65

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

cub/cub/device/device_run_length_encode.cuh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131

3232
#include <cuda/std/__execution/env.h>
3333
#include <cuda/std/__type_traits/enable_if.h>
34-
#include <cuda/std/__type_traits/is_integral.h>
3534
#include <cuda/std/__type_traits/is_same.h>
3635

3736
CUB_NAMESPACE_BEGIN
@@ -231,9 +230,6 @@ struct DeviceRunLengthEncode
231230
//! - ``[d_num_runs_out, d_num_runs_out + 1)``
232231
//! - ``[d_in, d_in + num_items)``
233232
//!
234-
//! - The algorithm is deterministic: it produces the same output for the same input across runs
235-
//! on the same or different GPUs. No determinism requirements need to be specified via the environment.
236-
//!
237233
//! Snippet
238234
//! +++++++++++++++++++++++++++++++++++++++++++++
239235
//!
@@ -480,9 +476,6 @@ struct DeviceRunLengthEncode
480476
//! - ``[d_num_runs_out, d_num_runs_out + 1)``
481477
//! - ``[d_in, d_in + num_items)``
482478
//!
483-
//! - The algorithm is deterministic: it produces the same output for the same input across runs
484-
//! on the same or different GPUs. No determinism requirements need to be specified via the environment.
485-
//!
486479
//! Snippet
487480
//! +++++++++++++++++++++++++++++++++++++++++++++
488481
//!

cub/cub/device/device_select.cuh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#include <cub/device/dispatch/dispatch_select_if.cuh>
2424
#include <cub/device/dispatch/dispatch_unique_by_key.cuh>
2525

26-
#include <cuda/__execution/determinism.h>
2726
#include <cuda/__execution/require.h>
2827
#include <cuda/std/__execution/env.h>
2928
#include <cuda/std/__functional/operations.h>

cub/test/catch2_test_device_run_length_encode_env_api.cu

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// SPDX-License-Identifier: BSD-3-Clause
33

44
#include "insert_nested_NVTX_range_guard.h"
5-
// above header needs to be included first
65

76
#include <cub/device/device_run_length_encode.cuh>
87

0 commit comments

Comments
 (0)