Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/include/cuml/cluster/kmeans_params.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION.
* SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION.
* SPDX-License-Identifier: Apache-2.0
*/

Expand Down Expand Up @@ -27,7 +27,7 @@ struct KMeansParams {
int max_iter = 300;
double tol = 1e-4;
rapids_logger::level_enum verbosity = rapids_logger::level_enum::info;
raft::random::RngState rng_state{0};
raft::random::RngState rng_state{0, raft::random::GeneratorType::GenPhilox};
int n_init = 1;
double oversampling_factor = 2.0;
int batch_samples = 1 << 15;
Expand Down