Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 6d01ba25 authored by THIBAULT Samuel's avatar THIBAULT Samuel
Browse files

Fix iscached for not-yet-registered data

parent 7f1a8fdb
No related branches found
No related tags found
1 merge request!40Fix iscached for not-yet-registered data
......@@ -47,6 +47,9 @@ int RUNTIME_desc_iscached(const MORSE_desc_t *A, int Am, int An)
starpu_data_handle_t *ptrtile = (starpu_data_handle_t*)(A->schedopt);
ptrtile += ((int64_t)(A->lmt) * (int64_t)An + (int64_t)Am);
if (!*ptrtile)
return 0;
return starpu_mpi_cached_receive(*ptrtile);
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment