hpxMP icon indicating copy to clipboard operation
hpxMP copied to clipboard

An OpenMP runtime implemented using HPX

Results 7 hpxMP issues
Sort by recently updated
recently updated
newest added

omp_set_num_threads(5); #pragma omp parallel for for (i = 0; i < 6; i++) { printf("Hello World #%d, From thread %d\n ", i, omp_get_thread_num()); result_1[i] = i; } hpxmp result: Hello...

Double free in taskwait_2, not able to reproduce on local machine ``` Start 39: taskwait_2 *** Error in `/hpxMP/build/tests/openmp/taskwait_2': double free or corruption (fasttop): 0x00007efbe00216e0 *** ```

Not generating proper behavior ``` // Copyright (c) 2018 Tianyi Zhang // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)...

failed when num_threads > 5 ``` // Copyright (c) 2018 Tianyi Zhang // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at...

```tests/omp/tests/src/omp-task-tree.c``` getting wrong results. But work well if not using untied tasks Ex1: ``` #include #include int spawn_children( int depth, int num_children ) { int partial_sum[num_children]; if( depth == 0)...

Code: ``` #include int foo() { return 42; } int bar(int in) { return in + 11; } int main(int argc, char **argv) { int x = 5, y =...