1#ifndef TATAMI_DELAYED_BIND_HPP
2#define TATAMI_DELAYED_BIND_HPP
4#include "../base/Matrix.hpp"
5#include "../utils/new_extractor.hpp"
6#include "../utils/ConsecutiveOracle.hpp"
7#include "../utils/FixedOracle.hpp"
8#include "../utils/PseudoOracularExtractor.hpp"
9#include "../utils/copy.hpp"
36template<
typename Index_,
class Initialize_>
39 const std::vector<Index_>&
mapping,
66template<
typename Index_,
class Initialize_>
69 const std::vector<Index_>&
mapping,
70 const std::vector<Index_>&
indices,
93template<
bool oracle_,
typename Value_,
typename Index_>
97 const std::vector<Index_>&,
98 const std::vector<Index_>&,
99 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
101 MaybeOracle<oracle_, Index_> oracle,
104 my_exts.reserve(matrices.size());
105 my_count.reserve(matrices.size());
106 for (
const auto& m : matrices) {
107 my_count.emplace_back(row ? m->ncol() : m->nrow());
108 my_exts.emplace_back(new_extractor<false, oracle_>(m.get(), row, oracle, opt));
113 const std::vector<Index_>& cumulative,
114 const std::vector<Index_>& mapping,
115 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
117 MaybeOracle<oracle_, Index_> oracle,
122 my_exts.reserve(matrices.size());
123 my_count.reserve(matrices.size());
124 initialize_parallel_block(
129 [&](Index_ i, Index_ sub_block_start, Index_ sub_block_length) {
130 my_count.emplace_back(sub_block_length);
131 my_exts.emplace_back(new_extractor<false, oracle_>(matrices[i].get(), row, oracle, sub_block_start, sub_block_length, opt));
137 const std::vector<Index_>& cumulative,
138 const std::vector<Index_>& mapping,
139 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
141 MaybeOracle<oracle_, Index_> oracle,
142 VectorPtr<Index_> indices_ptr,
145 my_exts.reserve(matrices.size());
146 my_count.reserve(matrices.size());
147 initialize_parallel_index(
151 [&](Index_ i, VectorPtr<Index_> sub_indices_ptr) {
152 my_count.emplace_back(sub_indices_ptr->size());
153 my_exts.emplace_back(new_extractor<false, oracle_>(matrices[i].get(), row, oracle, std::move(sub_indices_ptr), opt));
159 const Value_* fetch(Index_ i, Value_* buffer) {
161 for (Index_ x = 0, end = my_count.size(); x < end; ++x) {
162 auto ptr = my_exts[x]->fetch(i, copy);
163 auto num = my_count[x];
171 std::vector<std::unique_ptr<DenseExtractor<oracle_, Value_, Index_> > > my_exts;
172 std::vector<Index_> my_count;
179template<
bool oracle_,
typename Value_,
typename Index_>
183 const std::vector<Index_>& cumulative,
184 const std::vector<Index_>&,
185 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
187 MaybeOracle<oracle_, Index_> oracle,
188 const Options& opt) :
189 my_cumulative(cumulative),
190 my_needs_value(opt.sparse_extract_value),
191 my_needs_index(opt.sparse_extract_index)
193 my_exts.reserve(matrices.size());
194 for (
const auto& m : matrices) {
195 my_exts.emplace_back(new_extractor<true, oracle_>(m.get(), row, oracle, opt));
199 SparseRange<Value_, Index_> fetch(Index_ i, Value_* value_buffer, Index_* index_buffer) {
200 auto vcopy = value_buffer;
201 auto icopy = index_buffer;
202 Index_ accumulated = 0;
204 for (Index_ x = 0, end = my_cumulative.size() - 1; x < end; ++x) {
205 auto range = my_exts[x]->fetch(i, vcopy, icopy);
206 accumulated += range.number;
207 if (my_needs_value) {
208 copy_n(range.value, range.number, vcopy);
209 vcopy += range.number;
211 if (my_needs_index) {
212 auto offset = my_cumulative[x];
213 for (Index_ y = 0; y < range.number; ++y) {
214 icopy[y] = range.index[y] + offset;
216 icopy += range.number;
220 return SparseRange<Value_, Index_>(accumulated, (my_needs_value ? value_buffer : NULL), (my_needs_index ? index_buffer : NULL));
224 const std::vector<Index_>& my_cumulative;
225 bool my_needs_value, my_needs_index;
226 std::vector<std::unique_ptr<SparseExtractor<oracle_, Value_, Index_> > > my_exts;
229template<
bool oracle_,
typename Value_,
typename Index_>
233 const std::vector<Index_>& cumulative,
234 const std::vector<Index_>& mapping,
235 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
237 MaybeOracle<oracle_, Index_> oracle,
240 const Options& opt) :
241 my_cumulative(cumulative),
242 my_needs_value(opt.sparse_extract_value),
243 my_needs_index(opt.sparse_extract_index)
245 my_exts.reserve(matrices.size());
246 my_start_matrix = initialize_parallel_block(
251 [&](Index_ i, Index_ sub_block_start, Index_ sub_block_length) {
252 my_exts.emplace_back(new_extractor<true, oracle_>(matrices[i].get(), row, oracle, sub_block_start, sub_block_length, opt));
257 SparseRange<Value_, Index_> fetch(Index_ i, Value_* value_buffer, Index_* index_buffer) {
258 auto vcopy = value_buffer;
259 auto icopy = index_buffer;
262 for (Index_ x = 0, end = my_exts.size(); x < end; ++x) {
263 auto range = my_exts[x]->fetch(i, vcopy, icopy);
264 count += range.number;
265 if (my_needs_value) {
266 copy_n(range.value, range.number, vcopy);
267 vcopy += range.number;
269 if (my_needs_index) {
270 Index_ offset = my_cumulative[x + my_start_matrix];
271 for (Index_ y = 0; y < range.number; ++y) {
272 icopy[y] = range.index[y] + offset;
274 icopy += range.number;
278 return SparseRange<Value_, Index_>(count, (my_needs_value ? value_buffer : NULL), (my_needs_index ? index_buffer : NULL));
282 const std::vector<Index_>& my_cumulative;
283 bool my_needs_value, my_needs_index;
284 std::vector<std::unique_ptr<SparseExtractor<oracle_, Value_, Index_> > > my_exts;
285 Index_ my_start_matrix;
288template<
bool oracle_,
typename Value_,
typename Index_>
292 const std::vector<Index_>& cumulative,
293 const std::vector<Index_>& mapping,
294 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
296 MaybeOracle<oracle_, Index_> oracle,
297 VectorPtr<Index_> indices_ptr,
298 const Options& opt) :
299 my_cumulative(cumulative),
300 my_needs_value(opt.sparse_extract_value),
301 my_needs_index(opt.sparse_extract_index)
303 my_exts.reserve(matrices.size());
304 my_which_matrix.reserve(matrices.size());
305 initialize_parallel_index(
309 [&](Index_ i, VectorPtr<Index_> sub_indices_ptr) {
310 my_which_matrix.emplace_back(i);
311 my_exts.emplace_back(new_extractor<true, oracle_>(matrices[i].get(), row, oracle, std::move(sub_indices_ptr), opt));
316 SparseRange<Value_, Index_> fetch(Index_ i, Value_* value_buffer, Index_* index_buffer) {
317 auto vcopy = value_buffer;
318 auto icopy = index_buffer;
321 for (Index_ x = 0, end = my_which_matrix.size(); x < end; ++x) {
322 auto range = my_exts[x]->fetch(i, vcopy, icopy);
323 count += range.number;
324 if (my_needs_value) {
325 copy_n(range.value, range.number, vcopy);
326 vcopy += range.number;
329 if (my_needs_index) {
330 Index_ offset = my_cumulative[my_which_matrix[x]];
331 for (Index_ y = 0; y < range.number; ++y) {
332 icopy[y] = range.index[y] + offset;
334 icopy += range.number;
338 return SparseRange<Value_, Index_>(count, (my_needs_value ? value_buffer : NULL), (my_needs_index ? index_buffer : NULL));
342 const std::vector<Index_>& my_cumulative;
343 bool my_needs_value, my_needs_index;
344 std::vector<std::unique_ptr<SparseExtractor<oracle_, Value_, Index_> > > my_exts;
345 std::vector<Index_> my_which_matrix;
352template<
typename Value_,
typename Index_>
355 template<
typename ... Args_>
356 MyopicPerpendicularDense(
357 const std::vector<Index_>& cumulative,
358 const std::vector<Index_>& mapping,
359 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
361 const Args_& ... args) :
362 my_cumulative(cumulative),
365 my_exts.reserve(matrices.size());
366 for (
const auto& m : matrices) {
367 my_exts.emplace_back(m->dense(row, args...));
371 const Value_* fetch(Index_ i, Value_* buffer) {
372 Index_ chosen = my_mapping[i];
373 return my_exts[chosen]->fetch(i - my_cumulative[chosen], buffer);
377 const std::vector<Index_>& my_cumulative;
378 const std::vector<Index_>& my_mapping;
379 std::vector<std::unique_ptr<MyopicDenseExtractor<Value_, Index_> > > my_exts;
382template<
typename Value_,
typename Index_>
385 template<
typename ... Args_>
386 MyopicPerpendicularSparse(
387 const std::vector<Index_>& cumulative,
388 const std::vector<Index_>& mapping,
389 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
391 const Args_& ... args) :
392 my_cumulative(cumulative),
395 my_exts.reserve(matrices.size());
396 for (
const auto& m : matrices) {
397 my_exts.emplace_back(m->sparse(row, args...));
401 SparseRange<Value_, Index_> fetch(Index_ i, Value_* vbuffer, Index_* ibuffer) {
402 Index_ chosen = my_mapping[i];
403 return my_exts[chosen]->fetch(i - my_cumulative[chosen], vbuffer, ibuffer);
407 const std::vector<Index_>& my_cumulative;
408 const std::vector<Index_>& my_mapping;
409 std::vector<std::unique_ptr<MyopicSparseExtractor<Value_, Index_> > > my_exts;
412template<
typename Index_,
class Initialize_>
415 const std::vector<Index_>&
mapping,
417 std::vector<Index_>&
chosen,
424 bool consecutive =
true;
427 std::vector<Index_> predictions;
436 if (number + start == p) {
441 predictions.resize(number);
442 std::iota(predictions.begin(), predictions.end(), start);
445 predictions.push_back(p);
465 if (!
current.predictions.empty()) {
472template<
typename Value_,
typename Index_>
475 template<
typename ... Args_>
476 OracularPerpendicularDense(
477 const std::vector<Index_>& cumulative,
478 const std::vector<Index_>& mapping,
479 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
481 std::shared_ptr<
const Oracle<Index_> > ora,
482 const Args_& ... args)
484 my_exts.resize(matrices.size());
485 initialize_perp_oracular(
490 [&](Index_ x, std::shared_ptr<
const Oracle<Index_> > subora) {
491 my_exts[x] = matrices[x]->dense(row, std::move(subora), args...);
496 const Value_* fetch(Index_ i, Value_* buffer) {
497 auto chosen = segments[used];
498 auto output = my_exts[chosen]->fetch(i, buffer);
504 std::vector<Index_> segments;
505 std::vector<std::unique_ptr<OracularDenseExtractor<Value_, Index_> > > my_exts;
509template<
typename Value_,
typename Index_>
512 template<
typename ... Args_>
513 OracularPerpendicularSparse(
514 const std::vector<Index_>& cumulative,
515 const std::vector<Index_>& mapping,
516 const std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >& matrices,
518 std::shared_ptr<
const Oracle<Index_> > ora,
519 const Args_& ... args)
521 my_exts.resize(matrices.size());
522 initialize_perp_oracular(
527 [&](Index_ x, std::shared_ptr<
const Oracle<Index_> > subora) {
528 my_exts[x] = matrices[x]->sparse(row, std::move(subora), args...);
533 SparseRange<Value_, Index_> fetch(Index_ i, Value_* vbuffer, Index_* ibuffer) {
534 auto chosen = segments[used];
535 auto output = my_exts[chosen]->fetch(i, vbuffer, ibuffer);
541 std::vector<Index_> segments;
542 std::vector<std::unique_ptr<OracularSparseExtractor<Value_, Index_> > > my_exts;
560template<
typename Value_,
typename Index_>
573 for (
size_t i = 0,
nmats = my_matrices.size();
i <
nmats; ++
i) {
575 Index_ primary, secondary;
585 my_otherdim = secondary;
586 }
else if (my_otherdim != secondary) {
587 throw std::runtime_error(
"all 'my_matrices' should have the same number of " + (my_by_row ? std::string(
"columns") : std::string(
"rows")));
596 my_cumulative[
sofar + 1] = my_cumulative[
sofar] + primary;
601 my_cumulative.resize(
sofar + 1);
602 my_matrices.resize(
sofar);
608 my_mapping.reserve(my_cumulative.back());
610 my_mapping.insert(my_mapping.end(), (my_by_row ? my_matrices[
i]->nrow() : my_matrices[
i]->ncol()),
i);
614 for (
const auto&
x : my_matrices) {
615 double total =
static_cast<double>(
x->nrow()) *
static_cast<double>(
x->ncol());
617 my_sparse_prop += total *
x->is_sparse_proportion();
618 my_by_row_prop += total *
x->prefer_rows_proportion();
621 my_sparse_prop /=
denom;
622 my_by_row_prop /=
denom;
625 for (
int d = 0;
d < 2; ++
d) {
626 my_uses_oracle[
d] =
false;
627 for (
const auto&
x : my_matrices) {
628 if (
x->uses_oracle(
d)) {
629 my_uses_oracle[
d] =
true;
646 std::vector<std::shared_ptr<const Matrix<Value_, Index_> > > my_matrices;
650 std::vector<Index_> my_cumulative;
651 std::vector<Index_> my_mapping;
653 double my_sparse_prop = 0, my_by_row_prop = 0;
654 std::array<bool, 2> my_uses_oracle;
659 return my_cumulative.back();
669 return my_cumulative.back();
674 return my_sparse_prop > 0.5;
678 return my_sparse_prop;
682 return my_by_row_prop > 0.5;
686 return my_by_row_prop;
690 return my_uses_oracle[
row];
702 if (my_matrices.size() == 1) {
703 return my_matrices[0]->dense(
row,
opt);
704 }
else if (
row == my_by_row) {
705 return std::make_unique<DelayedBind_internal::MyopicPerpendicularDense<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
opt);
707 return std::make_unique<DelayedBind_internal::ParallelDense<false, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
false,
opt);
712 if (my_matrices.size() == 1) {
714 }
else if (
row == my_by_row) {
715 return std::make_unique<DelayedBind_internal::MyopicPerpendicularDense<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
block_start,
block_length,
opt);
717 return std::make_unique<DelayedBind_internal::ParallelDense<false, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
false,
block_start,
block_length,
opt);
722 if (my_matrices.size() == 1) {
724 }
else if (
row == my_by_row) {
725 return std::make_unique<DelayedBind_internal::MyopicPerpendicularDense<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
indices_ptr),
opt);
727 return std::make_unique<DelayedBind_internal::ParallelDense<false, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
false, std::move(
indices_ptr),
opt);
735 std::unique_ptr<MyopicSparseExtractor<Value_, Index_> > sparse(
bool row,
const Options&
opt)
const {
736 if (my_matrices.size() == 1) {
737 return my_matrices[0]->sparse(
row,
opt);
738 }
else if (
row == my_by_row) {
739 return std::make_unique<DelayedBind_internal::MyopicPerpendicularSparse<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
opt);
741 return std::make_unique<DelayedBind_internal::ParallelFullSparse<false, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
false,
opt);
746 if (my_matrices.size() == 1) {
748 }
else if (
row == my_by_row) {
749 return std::make_unique<DelayedBind_internal::MyopicPerpendicularSparse<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
block_start,
block_length,
opt);
751 return std::make_unique<DelayedBind_internal::ParallelBlockSparse<false, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
false,
block_start,
block_length,
opt);
756 if (my_matrices.size() == 1) {
758 }
else if (
row == my_by_row) {
759 return std::make_unique<DelayedBind_internal::MyopicPerpendicularSparse<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
indices_ptr),
opt);
761 return std::make_unique<DelayedBind_internal::ParallelIndexSparse<false, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row,
false, std::move(
indices_ptr),
opt);
770 if (my_matrices.size() == 1) {
771 return my_matrices[0]->dense(
row, std::move(
oracle),
opt);
772 }
else if (!my_uses_oracle[
row]) {
773 return std::make_unique<PseudoOracularDenseExtractor<Value_, Index_> >(std::move(
oracle),
dense(
row,
opt));
774 }
else if (
row == my_by_row) {
775 return std::make_unique<DelayedBind_internal::OracularPerpendicularDense<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle),
opt);
777 return std::make_unique<DelayedBind_internal::ParallelDense<true, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle),
opt);
782 if (my_matrices.size() == 1) {
784 }
else if (!my_uses_oracle[
row]) {
786 }
else if (
row == my_by_row) {
787 return std::make_unique<DelayedBind_internal::OracularPerpendicularDense<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle),
block_start,
block_length,
opt);
789 return std::make_unique<DelayedBind_internal::ParallelDense<true, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle),
block_start,
block_length,
opt);
794 if (my_matrices.size() == 1) {
796 }
else if (!my_uses_oracle[
row]) {
798 }
else if (
row == my_by_row) {
799 return std::make_unique<DelayedBind_internal::OracularPerpendicularDense<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle), std::move(
indices_ptr),
opt);
801 return std::make_unique<DelayedBind_internal::ParallelDense<true, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle), std::move(
indices_ptr),
opt);
810 if (my_matrices.size() == 1) {
811 return my_matrices[0]->sparse(
row, std::move(
oracle),
opt);
812 }
else if (!my_uses_oracle[
row]) {
813 return std::make_unique<PseudoOracularSparseExtractor<Value_, Index_> >(std::move(
oracle), sparse(
row,
opt));
814 }
else if (
row == my_by_row) {
815 return std::make_unique<DelayedBind_internal::OracularPerpendicularSparse<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle),
opt);
817 return std::make_unique<DelayedBind_internal::ParallelFullSparse<true, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle),
opt);
822 if (my_matrices.size() == 1) {
824 }
else if (!my_uses_oracle[
row]) {
826 }
else if (
row == my_by_row) {
827 return std::make_unique<DelayedBind_internal::OracularPerpendicularSparse<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle),
block_start,
block_length,
opt);
829 return std::make_unique<DelayedBind_internal::ParallelBlockSparse<true, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle),
block_start,
block_length,
opt);
834 if (my_matrices.size() == 1) {
836 }
else if (!my_uses_oracle[
row]) {
837 return std::make_unique<PseudoOracularSparseExtractor<Value_, Index_> >(std::move(
oracle), sparse(
row, std::move(
indices_ptr),
opt));
838 }
else if (
row == my_by_row) {
839 return std::make_unique<DelayedBind_internal::OracularPerpendicularSparse<Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle), std::move(
indices_ptr),
opt);
841 return std::make_unique<DelayedBind_internal::ParallelIndexSparse<true, Value_, Index_> >(my_cumulative, my_mapping, my_matrices,
row, std::move(
oracle), std::move(
indices_ptr),
opt);
858template<
typename Value_,
typename Index_>
866template<
typename Value_,
typename Index_>
867std::shared_ptr<Matrix<Value_, Index_> >
make_DelayedBind(std::vector<std::shared_ptr<Matrix<Value_, Index_> > >
matrices,
bool row) {
878template<
int margin_,
typename Value_,
typename Index_>
879std::shared_ptr<Matrix<Value_, Index_> >
make_DelayedBind(std::vector<std::shared_ptr<
const Matrix<Value_, Index_> > >
matrices) {
883template<
int margin_,
typename Value_,
typename Index_>
884std::shared_ptr<Matrix<Value_, Index_> >
make_DelayedBind(std::vector<std::shared_ptr<Matrix<Value_, Index_> > >
matrices) {
Delayed combining of a matrix.
Definition DelayedBind.hpp:561
DelayedBind(const std::vector< std::shared_ptr< Matrix< Value_, Index_ > > > &matrices, bool by_row)
Definition DelayedBind.hpp:642
std::unique_ptr< OracularDenseExtractor< Value_, Index_ > > dense(bool row, std::shared_ptr< const Oracle< Index_ > > oracle, VectorPtr< Index_ > indices_ptr, const Options &opt) const
Definition DelayedBind.hpp:793
std::unique_ptr< MyopicDenseExtractor< Value_, Index_ > > dense(bool row, const Options &opt) const
Definition DelayedBind.hpp:701
double is_sparse_proportion() const
Definition DelayedBind.hpp:677
std::unique_ptr< MyopicDenseExtractor< Value_, Index_ > > dense(bool row, VectorPtr< Index_ > indices_ptr, const Options &opt) const
Definition DelayedBind.hpp:721
std::unique_ptr< OracularDenseExtractor< Value_, Index_ > > dense(bool row, std::shared_ptr< const Oracle< Index_ > > oracle, const Options &opt) const
Definition DelayedBind.hpp:769
Index_ nrow() const
Definition DelayedBind.hpp:657
bool is_sparse() const
Definition DelayedBind.hpp:673
std::unique_ptr< OracularDenseExtractor< Value_, Index_ > > dense(bool row, std::shared_ptr< const Oracle< Index_ > > oracle, Index_ block_start, Index_ block_length, const Options &opt) const
Definition DelayedBind.hpp:781
Index_ ncol() const
Definition DelayedBind.hpp:665
DelayedBind(std::vector< std::shared_ptr< const Matrix< Value_, Index_ > > > matrices, bool by_row)
Definition DelayedBind.hpp:569
bool prefer_rows() const
Definition DelayedBind.hpp:681
std::unique_ptr< MyopicDenseExtractor< Value_, Index_ > > dense(bool row, Index_ block_start, Index_ block_length, const Options &opt) const
Definition DelayedBind.hpp:711
double prefer_rows_proportion() const
Definition DelayedBind.hpp:685
bool uses_oracle(bool row) const
Definition DelayedBind.hpp:689
Virtual class for a matrix.
Definition Matrix.hpp:59
Predict future access requests on the target dimension.
Definition Oracle.hpp:21
Flexible representations for matrix data.
Definition Extractor.hpp:15
typename std::conditional< oracle_, OracularDenseExtractor< Value_, Index_ >, MyopicDenseExtractor< Value_, Index_ > >::type DenseExtractor
Definition Extractor.hpp:273
typename std::conditional< oracle_, OracularSparseExtractor< Value_, Index_ >, MyopicSparseExtractor< Value_, Index_ > >::type SparseExtractor
Definition Extractor.hpp:284
Value_ * copy_n(const Value_ *input, Size_ n, Value_ *output)
Definition copy.hpp:25
std::shared_ptr< Matrix< Value_, Index_ > > make_DelayedBind(std::vector< std::shared_ptr< const Matrix< Value_, Index_ > > > matrices, bool row)
Definition DelayedBind.hpp:859
std::shared_ptr< const std::vector< Index_ > > VectorPtr
Definition Matrix.hpp:26
auto consecutive_extractor(const Matrix< Value_, Index_ > *mat, bool row, Index_ iter_start, Index_ iter_length, Args_ &&... args)
Definition consecutive_extractor.hpp:35
Options for accessing data from a Matrix instance.
Definition Options.hpp:30