Mentions légales du service

Skip to content
Snippets Groups Projects
Commit ae046517 authored by Rabab Alomairy's avatar Rabab Alomairy
Browse files

MPI mode out of stock

parent c4c738ec
Branches
No related tags found
No related merge requests found
...@@ -192,14 +192,10 @@ void RUNTIME_desc_create( MORSE_desc_t *desc ) ...@@ -192,14 +192,10 @@ void RUNTIME_desc_create( MORSE_desc_t *desc )
} }
} }
#if defined(CHAMELEON_USE_MPI) /*#if defined(CHAMELEON_USE_MPI)
/*
* Check that we are not going over MPI tag limitations
*/
{ {
chameleon_starpu_tag_init( tag_width, tag_sep ); chameleon_starpu_tag_init( tag_width, tag_sep );
/* Check that we won't create overflow in tags used */
if ( ((uintptr_t)(lnt*lmt)) > ((uintptr_t)(1UL<<tag_sep)) ) { if ( ((uintptr_t)(lnt*lmt)) > ((uintptr_t)(1UL<<tag_sep)) ) {
morse_fatal_error("RUNTIME_desc_create", "Too many tiles in the descriptor for MPI tags"); morse_fatal_error("RUNTIME_desc_create", "Too many tiles in the descriptor for MPI tags");
return; return;
...@@ -212,7 +208,7 @@ void RUNTIME_desc_create( MORSE_desc_t *desc ) ...@@ -212,7 +208,7 @@ void RUNTIME_desc_create( MORSE_desc_t *desc )
} }
assert( ((uintptr_t)desc->id) < (uintptr_t)(1UL<<(tag_width-tag_sep)) ); assert( ((uintptr_t)desc->id) < (uintptr_t)(1UL<<(tag_width-tag_sep)) );
} }
#endif #endif*/
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment