39 template <
typename NUM>
40 std::tuple<NUM*, std::size_t, std::size_t>
41 read_coords(std::string filename, std::vector<std::size_t> usecols) {
44 std::size_t n_cols_used=0;
45 std::ifstream ifs(filename);
48 std::cerr <<
"error: cannot open file '" << filename <<
"'" << std::endl;
55 while (linebuf.empty() && ifs.good()) {
56 std::getline(ifs, linebuf);
58 std::stringstream ss(linebuf);
59 n_cols = std::distance(std::istream_iterator<std::string>(ss),
60 std::istream_iterator<std::string>());
65 std::getline(ifs, linebuf);
66 if ( ! linebuf.empty()) {
72 ifs.seekg(0, std::ios::beg);
75 << n_cols <<
"\n" << std::endl;
76 std::map<std::size_t, bool> col_used;
77 if (usecols.size() == 0) {
80 for (std::size_t i=0; i < n_cols; ++i) {
85 n_cols_used = usecols.size();
86 for (std::size_t i=0; i < n_cols; ++i) {
89 for (std::size_t i: usecols) {
96 NUM* coords = (NUM*) _mm_malloc(
sizeof(NUM)*n_rows*n_cols_used, DC_MEM_ALIGNMENT);
99 for (std::size_t cur_row = 0; cur_row < n_rows; ++cur_row) {
100 std::size_t cur_col = 0;
101 for (std::size_t i=0; i < n_cols; ++i) {
105 coords[cur_row*n_cols_used + cur_col] = buf;
110 return std::make_tuple(coords, n_rows, n_cols_used);
114 template <
typename NUM>
120 template <
typename NUM>
124 , std::size_t n_cols) {
125 std::vector<NUM> sorted_coords(n_rows*n_cols);
128 for (std::size_t i=0; i < n_rows; ++i) {
129 sorted_coords[i] = coords[i];
131 std::sort(sorted_coords.begin(), sorted_coords.end());
133 std::vector<std::vector<NUM>> c_tmp(n_rows
134 , std::vector<float>(n_cols));
135 for (std::size_t i=0; i < n_rows; ++i) {
136 for (std::size_t j=0; j < n_cols; ++j) {
137 c_tmp[i][j] = coords[i*n_cols+j];
141 std::sort(c_tmp.begin()
143 , [] (
const std::vector<NUM>& lhs
144 ,
const std::vector<NUM>& rhs) {
145 return lhs[0] < rhs[0];
148 for (std::size_t i=0; i < n_rows; ++i) {
149 for (std::size_t j=0; j < n_cols; ++j) {
150 sorted_coords[i*n_cols+j] = c_tmp[i][j];
154 return sorted_coords;
157 template <
typename NUM>
160 , std::size_t boxsize
162 , std::size_t n_cols) {
164 std::size_t n_boxes = n_rows / boxsize;
165 if (n_boxes * boxsize < n_rows) {
169 for (std::size_t i=0; i < n_boxes; ++i) {
172 boxlimits[i] = xs[i*boxsize*n_cols];
177 template <
typename NUM>
178 std::pair<std::size_t, std::size_t>
182 std::size_t n_boxes = limits.size();
186 std::size_t i_min = n_boxes - 1;
187 std::size_t i_max = 0;
188 NUM lbound = val - radius;
189 NUM ubound = val + radius;
190 for (std::size_t i=1; i < n_boxes; ++i) {
191 if (lbound < limits[i]) {
196 for (std::size_t i=n_boxes; 0 < i; --i) {
197 if (limits[i-1] < ubound) {
202 return {i_min, i_max};
207 template <
typename KEY,
typename VAL>
209 write_map(std::string filename, std::map<KEY, VAL> mapping,
210 std::string header_comment,
bool val_then_key) {
211 std::ofstream ofs(filename);
213 std::cerr <<
"error: cannot open file '" << filename <<
"' for writing." << std::endl;
216 ofs << header_comment;
218 for (
auto key_val: mapping) {
219 ofs << key_val.second <<
" " << key_val.first <<
"\n";
222 for (
auto key_val: mapping) {
223 ofs << key_val.first <<
" " << key_val.second <<
"\n";
228 template <
typename NUM>
231 std::vector<NUM> dat;
232 std::ifstream ifs(filename);
234 std::cerr <<
"error: cannot open file '" << filename <<
"'" << std::endl;
237 while (!ifs.eof() && !ifs.bad()) {
244 ifs.ignore(std::numeric_limits<std::streamsize>::max(),
'\n');
249 std::cerr <<
"error: opened empty file '" << filename <<
"'" << std::endl;
256 template <
typename NUM>
259 std::string header_comment,
bool with_scientific_format) {
260 std::ofstream ofs(filename);
262 std::cerr <<
"error: cannot open file '" << filename <<
"' for writing." << std::endl;
265 ofs << header_comment;
266 if (with_scientific_format) {
267 ofs << std::scientific;
274 template <
typename NUM>
277 std::stringstream ss(s);
283 template <
typename T>
288 auto last = std::unique(xs.begin()
general namespace for clustering package
std::ostream & logger(std::ostream &s)