Tobias Fuchs

Results 10 issues of Tobias Fuchs

As the STL has no equivalent, I defined the DASH graph concepts following the Boost Graph Library (BGL). In his Master thesis, @stiefn refined and extended concepts for several peculiarities...

feature
help wanted
module:dynamic-memory
module:algorithms
specification:dash-concepts

As previously discussed in issue #280, DART should support user-specified alignment for allocation (also see https://github.com/dash-project/dash/issues/280#issuecomment-279759290)

feature
specification:dart-if

See PR #634

feature
help wanted
module:dynamic-memory
enhancement
module:graph

Everyone (yes, you @dash-project/developers): - Read the DASH API at https://codedocs.xyz/dash-project/dash/ - Complete it.

help wanted
support
doc

From #107: The current interface of `dash::Matrix` / `dash::NArray` has some ambiguities and does not comply to formal semantics of the NArray concept. - use NArray specification to document semantics...

doc
module:narray
specification:dash-concepts

Addresses issues #272 #104 #216

feature
help wanted
doc
module:algorithms
specification:dash-concepts
enhancement

Addresses #346, among others. A diff that demonstrates the benefit of view expressions pretty well: With view expressions, `dash::copy(lbegin, lend, gbegin)` is now supported and also allows non-contiguous global destination...

feature
module:algorithms
specification:dash-concepts
enhancement

- Proposed method to integrate dyloc into DASH build: \

feature
module:locality
specification:dart-if

Question on `dash::Atomic`: Why is the copy constructor deleted, but assignment is not? - `operator=(T)` is deleted - `operator=(const self_t &)` is implicitly defaulted That can't be right When I...

bug
question
specification:dash-concepts
known-limitation:0.3.0

From issue #3: Consider the following use cases: ~~~c++ // assuming row-major storage dash::Matrix matrix(...); auto lcol = matrix.local.col(0); auto lrow = matrix.local.row(0); auto n_lcol = std::distance(lcol.begin(), lcol.end()); auto n_lrow...

feature
module:algorithms