Skip to content

Commit ef33827

Browse files
committed
format
1 parent e28692f commit ef33827

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

include/CLUEstering/core/Clusterer.hpp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,12 @@ namespace clue {
5757
clue::copyToDevice(queue, dev_points, h_points);
5858
}
5959

60-
void setup_batch(Queue& queue, const PointsHost& h_points, PointsDevice& dev_points, std::size_t batch_size) {
61-
detail::setup_tiles(queue, m_tiles, h_points, m_pointsPerTile, m_wrappedCoordinates, batch_size);
60+
void setup_batch(Queue& queue,
61+
const PointsHost& h_points,
62+
PointsDevice& dev_points,
63+
std::size_t batch_size) {
64+
detail::setup_tiles(
65+
queue, m_tiles, h_points, m_pointsPerTile, m_wrappedCoordinates, batch_size);
6266
detail::setup_followers(queue, m_followers, h_points.size());
6367
clue::copyToDevice(queue, dev_points, h_points);
6468
}

0 commit comments

Comments
 (0)