Skip to content

Commit

Permalink
🎨 clang format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
venkywonka committed Apr 1, 2021
1 parent 4a4e3cc commit 78ec480
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/test/sg/decisiontree_batchedlevel_algo.cu
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ class DtBaseTest : public ::testing::TestWithParam<DtTestParams> {
(T*)allocator->allocate(sizeof(T) * inparams.nbins * inparams.N, stream);

// computing the quantiles
computeQuantiles(quantiles, inparams.nbins, data, inparams.M, inparams.N, allocator, stream);
computeQuantiles(quantiles, inparams.nbins, data, inparams.M, inparams.N,
allocator, stream);
}

void TearDown() {
Expand Down

0 comments on commit 78ec480

Please sign in to comment.