From c0e4a32ca2eed36bdb1adfc26edf49e7368ebfaa Mon Sep 17 00:00:00 2001 From: Yiltan Temucin Date: Mon, 23 Dec 2024 10:33:41 -0600 Subject: [PATCH] IPC backend now aborts with rocshmem global_exit() --- src/ipc/backend_ipc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipc/backend_ipc.cpp b/src/ipc/backend_ipc.cpp index f2ad9f9509..645ad160eb 100644 --- a/src/ipc/backend_ipc.cpp +++ b/src/ipc/backend_ipc.cpp @@ -286,7 +286,7 @@ void IPCBackend::initIPC() { } void IPCBackend::global_exit(int status) { - assert(false); + MPI_Abort(MPI_COMM_WORLD, status); } void IPCBackend::teams_destroy() {