Tobias Fuchs
Tobias Fuchs
@dash-project/developers First, I want to announce my "comeback" as an active contributor to DASH after my hiatus of over a year. Regarding this feature request, I have prepared concepts for...
It should be: ``` resize(dim_t, d, SizeType extent); resize(std::initializer_list extents); ``` The reason using the same name (overload) was the 1-dimensional case in particular. ``` TeamSpec ts(16); ts.resize(0, // Elementary,...
@devreal I fixed the code sections listed in the warnings you posted in PR #321. How did you obtain the `constexpr` warnings? I can't seem to generate them on my...
These warnings are caused by `Team.myid()` which is not `constexpr` and probably never will. The value of `_team->myid()` could be stored in a member, but pattern constructors would then not...
@devreal ... so ... what you are saying is that team ids are not cached at team creation? Why?
Whussa. I don't think it's a problem with `dash::Matrix`, this looks like an issue in the block pattern. Using `dash::SeqTilePattern` should work, for example. I copy from/to matrix objects a...
@devreal Sorry, I don't get it: what's the original issue? Is the use case covered in the unit test you added? I found a bug related to #418 and will...
Well, the question whether "A is a B" (`A : public B`) means: "Can you pass an instance of `A` to every context that expects a `B`? In this example,...
For now, I added ```c++ self_t & operator=(const self_t & other) = default; ``` But assignment is still explicitly deleted, so this is not well-defined.