dash icon indicating copy to clipboard operation
dash copied to clipboard

DASH, the C++ Template Library for Distributed Data Structures with Support for Hierarchical Locality for HPC and Data-Driven Science

Results 100 dash issues
Sort by recently updated
recently updated
newest added

See PR #634

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

The `SPEC` macro defined in `include/dash/Meta.h` is too generic and slips through into the global namespace. Please rename.

The method resize (TeamSpec) is ambiguous in case of two dimensions: template void resize(SizeType arg, Args... args) vs. void resize(dim_t dim, SizeType extent) e.g. the call teamspec.resize(2,1) doesn't compile. Currently,...

bug

Got this from someone which compiled with Intel 2019 and `-std=c++14`. Is this some known problem, which is already solved? ``` /work/xu077052/spec/hpc2020-007/benchspec/HPC/620.dashmg_s/../111.libdash/src/include/dash/halo/Halo.h(532): error: constexpr constructor must initialize direct base class...

We need more parallelism to exploit the power of many-core nodes. The underlying algorithm itself will be rewritten to eliminate barriers. This includes the following major changes: - Algorithmic improvements:...

DASH currently provides a set of patterns and distribution specifiers to control the distribution of tiles in a tiled matrix. However, there is currently no easy way to form blocks...

feature
help wanted
enhancement

Consider the following code snippet: ``` dash::NArray matrix(dash::size(), N); int *my_row = matrix[dash::myid()].lbegin(); ``` which gives the following compiler error: ``` /home/joseph/opt/dash-0.3.0//include/dash/matrix/internal/MatrixRef-inl.h: In instantiation of ‘T* dash::MatrixRef::lbegin() [with ElementT =...

bug
module:narray

All DART API calls validate the unitId arguments (source and destination) to be in the range `0

The implementation of `dash::sort` now heavily relies on threading and asynchronous tasks, especially in the end while we merge all our sorted sequences. In order to test that we had...

help wanted