Skip to content
Snippets Groups Projects
Verified Commit 6b5f1fa3 authored by raphael.bach's avatar raphael.bach
Browse files

Remove redundant error message in `fmpi_futhark_get_data_async()`

parent 5006bb17
No related branches found
No related tags found
No related merge requests found
...@@ -229,7 +229,6 @@ void * fmpi_futhark_get_data_async( ...@@ -229,7 +229,6 @@ void * fmpi_futhark_get_data_async(
const size_t idx = FMPI_PRIV_FUTHARK_FUNC_IDX(dim_cnt, type); const size_t idx = FMPI_PRIV_FUTHARK_FUNC_IDX(dim_cnt, type);
const int err = fmpi_futhark_get_data_func_list[idx](ctx, in, out); const int err = fmpi_futhark_get_data_func_list[idx](ctx, in, out);
if(err != FUTHARK_SUCCESS) { if(err != FUTHARK_SUCCESS) {
FMPI_RAISE_FUTHARK_ERROR(ctx, "futhark_values_##T##_##D##d() failed!");
return NULL; return NULL;
} }
return out; return out;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment