From 250e9ae225596b2e36a88529094292524b7ee48a Mon Sep 17 00:00:00 2001 From: Michel Schanen Date: Wed, 12 Mar 2014 12:43:30 +0100 Subject: [PATCH] Interpret dummies for SEND_INIT and RECV_INIT --- src/ampi_tape.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ampi_tape.c b/src/ampi_tape.c index c4db2ad..96f95d2 100644 --- a/src/ampi_tape.c +++ b/src/ampi_tape.c @@ -1200,6 +1200,12 @@ void ampi_interpret_tape(long int idx){ free(tmp_d); break; } + case SEND_INIT : { + break; + } + case RECV_INIT : { + break; + } default: { printf("Warning: Missing opcode in the AMPI tape interpreter for %d at tape index %lu.\n", ampi_tape[i].oc, i); break;