Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b1f05a5a authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Make it compile with MPI

parent 663838dd
No related branches found
No related tags found
1 merge request!92Fix issue #8 and #4 - gitlab parsec
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include "chameleon_parsec.h" #include "chameleon_parsec.h"
#include <parsec/data.h> #include <parsec/data.h>
#include <parsec/datatype.h> #include <parsec/datatype.h>
//#include <parsec/data_dist/matrix/matrix.h>
#include <parsec/arena.h> #include <parsec/arena.h>
static int parsec_global_arena_index = 0; static int parsec_global_arena_index = 0;
...@@ -250,7 +249,7 @@ void RUNTIME_desc_create( MORSE_desc_t *mdesc ) ...@@ -250,7 +249,7 @@ void RUNTIME_desc_create( MORSE_desc_t *mdesc )
parsec_dtd_taskpool_new(); parsec_dtd_taskpool_new();
/* Internal limitation of PaRSEC */ /* Internal limitation of PaRSEC */
assert(parsec_global_arena_index < 16); assert(parsec_global_arena_index < 16);
pdesc->arena_index = parsec_global_arena_index++; pdesc->arena_index = 0; /*parsec_global_arena_index++;*/
parsec_datatype_t datatype; parsec_datatype_t datatype;
switch(mdesc->dtyp) { switch(mdesc->dtyp) {
......
...@@ -22,6 +22,10 @@ ...@@ -22,6 +22,10 @@
#include <parsec.h> #include <parsec.h>
#include <parsec/insert_function.h> #include <parsec/insert_function.h>
#include <parsec/data_dist/matrix/matrix.h>
/* Undefined PaRSEC definition of BLKLDD */
#undef BLKLDD
#include "control/common.h" #include "control/common.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment