dash
                                
                                 dash copied to clipboard
                                
                                    dash copied to clipboard
                            
                            
                            
                        DASH, the C++ Template Library for Distributed Data Structures with Support for Hierarchical Locality for HPC and Data-Driven Science
I'm working on a 3-dim Stencil Code. When I tried to instead of using ```dash::BLOCKED``` in all three dimensions for the ```DistributionSpec```, to use ```dash::NONE``` in the dimension of the...
Hi, Met another problem in DASH. I tried to embed the below code into ArrayUDF. The compiler says that "unsigned long long" is not directly supported in DASH. The conversion...
It would be very cool to have minimum/maximum Version numbers for these in the readme. For both libraries there can be build problems if the wrong version is loaded. E.g....
Hi, Sorry for too many questions here. I am developing a DASH plugin to ArrayUDF and had a question about the NumDimensions. It is a template parameter to the Matrix...
Hi All, On the Mac (https://github.com/dash-project/dash/issues/673) with its default Makefile, I am testing the below simple example code to understand how DASH works. It gives me some confused results. I...
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...
See https://en.cppreference.com/w/cpp/language/alignas Fixes #665
This file containes `__attribute__((aligned())` statements, which are not standard complient. Please fix.
DASH is affected to a PGI compiler but I reported a bug with a reproducer: https://www.pgroup.com/userforum/viewtopic.php?t=6600 I noticed this because of the `BoundaryProp` enum class is of type `uint8_t`.
The assert in the following example fails for some `{x,y}`: ``` using PatternT = typename dash::TilePattern; using TiledMatrix = dash::Matrix; TiledMatrix A(num_blocks, num_blocks, // super-blocks dash::TILE(super_block_size), dash::TILE(super_block_size), block_size, block_size, dash::TILE(block_size),...