From 6b5f1fa35e5a68f8c5a29c847774ea54ab40570b Mon Sep 17 00:00:00 2001 From: "raphael.bach" <raphael.bach@etu.hesge.ch> Date: Thu, 23 Jun 2022 21:45:53 +0200 Subject: [PATCH] Remove redundant error message in `fmpi_futhark_get_data_async()` --- src/fmpi_futhark.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/fmpi_futhark.c b/src/fmpi_futhark.c index 430d4fc..4815641 100644 --- a/src/fmpi_futhark.c +++ b/src/fmpi_futhark.c @@ -229,7 +229,6 @@ void * fmpi_futhark_get_data_async( 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); if(err != FUTHARK_SUCCESS) { - FMPI_RAISE_FUTHARK_ERROR(ctx, "futhark_values_##T##_##D##d() failed!"); return NULL; } return out; -- GitLab