CLUEstering
High-performance density-based weighted clustering library developed at CERN
Loading...
Searching...
No Matches
read_csv.hpp
Go to the documentation of this file.
1
4
5#pragma once
6
8#include "CLUEstering/detail/concepts.hpp"
9
10#include <string>
11
12namespace clue {
13
21 template <size_t NDim, concepts::queue TQueue>
22 inline clue::PointsHost<NDim> read_csv(TQueue& queue, const std::string& file_path);
23
31 template <size_t NDim, concepts::queue TQueue>
32 inline clue::PointsHost<NDim> read_output(TQueue& queue, const std::string& file_path);
33
34} // namespace clue
35
36#include "CLUEstering/utils/detail/read_csv.hpp"
Provides the PointsHost class for managing points in host memory.
The PointsHost class is a data structure that manages points in host memory. It provides methods to a...
Definition PointsHost.hpp:24
clue::PointsHost< NDim > read_csv(TQueue &queue, const std::string &file_path)
Read points from a CSV file into a PointsHost object.
clue::PointsHost< NDim > read_output(TQueue &queue, const std::string &file_path)
Read output points from a CSV file into a PointsHost object.