CHEN Yihui 5 лет назад
Родитель
Сommit
a547c46023
5 измененных файлов с 109 добавлено и 39 удалено
  1. 6 0
      .gitignore
  2. BIN
      pipeline/a.out
  3. 1 1
      pipeline/aes.cc
  4. 0 38
      pipeline/main.c
  5. 102 0
      pipeline/main.cc

+ 6 - 0
.gitignore

@@ -0,0 +1,6 @@
+# binary
+*.out
+
+*.o
+# vscode
+.vscode

BIN
pipeline/a.out


+ 1 - 1
pipeline/aes.c → pipeline/aes.cc

@@ -396,7 +396,7 @@ uint8_t *aes_init(size_t key_size) {
 		case 32: Nk = 8; Nr = 14; break;
 	}
 
-	return malloc(Nb*(Nr+1)*4);
+	return (uint8_t*)malloc(Nb*(Nr+1)*4);
 }
 
 /*

+ 0 - 38
pipeline/main.c

@@ -1,38 +0,0 @@
-#include <mpi.h>
-#include "aes.h"
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-
-#define PACKAGE_SIZE 4096
-#define PACKAGE_NUM 2048
-#define AES_ONCE 16
-
-int main(int argc, char *argv[]) {
-  uint8_t key[] = {
-      0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
-      0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f};
-  uint8_t in[AES_ONCE], out[AES_ONCE];
-  uint8_t *w;
-  int rank, size;
-  uint8_t xbuf[2][PACKAGE_SIZE];
-  uint8_t ybuf[2][PACKAGE_SIZE];
-  int i, j, k;
-  MPI_Request request;
-  MPI_Status status;
-  w = aes_init(sizeof(key));
-  aes_key_expansion(key, w);
-  MPI_Init(&argc, &argv);
-  MPI_Comm_rank(MPI_COMM_WORLD, &rank);
-  MPI_Comm_size(MPI_COMM_WORLD, &size);
-  if (rank == 0) {
-    for (i = 0; i < PACKAGE_NUM; ++i) {
-
-    }
-  } else if (rank == 1) {
-
-  } else if (rank == 2) {
-
-  }
-  MPI_Finalize();
-}

+ 102 - 0
pipeline/main.cc

@@ -0,0 +1,102 @@
+#include "aes.h"
+#include <glog/logging.h>
+#include <mpi.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#define BUFFER_SIZE 4096
+#define PACKAGE_NUM 4096
+
+// pipeline macros
+#define PIPELINE_SEND(idx)                                                     \
+  LOG(INFO) << "Proc" << rank << ": Isend started, idx:" << idx;               \
+  MPI_Isend(send_buffer[(idx) % 2], BUFFER_SIZE, MPI_UINT8_T, rank + 1, idx,   \
+            MPI_COMM_WORLD, &send_request);                                    \
+  LOG(INFO) << "Proc" << rank << ": Isend finished, idx:" << idx;
+
+#define PIPELINE_SEND_WAIT()                                                   \
+  LOG(INFO) << "Proc" << rank << ": send wait started";                        \
+  MPI_Wait(&send_request, MPI_STATUS_IGNORE);                                  \
+  LOG(INFO) << "Proc" << rank << ": send wait finished";
+
+#define PIPELINE_RECV(idx)                                                     \
+  LOG(INFO) << "Proc" << rank << ": Irecv started, idx:" << idx;               \
+  MPI_Irecv(recv_buffer[(idx) % 2], BUFFER_SIZE, MPI_UINT8_T, rank - 1, idx,   \
+            MPI_COMM_WORLD, &recv_request);                                    \
+  LOG(INFO) << "Proc" << rank << ": Irecv finished, idx:" << idx;
+
+#define PIPELINE_RECV_WAIT()                                                   \
+  LOG(INFO) << "Proc" << rank << ": recv wait started";                        \
+  MPI_Wait(&recv_request, MPI_STATUS_IGNORE);                                  \
+  LOG(INFO) << "Proc" << rank << ": recv wait finished";
+// end pipeline macros
+
+// aes variables
+#define AES_ONCE 16
+
+uint8_t key[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
+                 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
+                 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
+                 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f};
+uint8_t *w;
+uint8_t in[AES_ONCE], out[AES_ONCE];
+// aes variables
+
+int main(int argc, char *argv[]) {
+  int rank, size;
+  MPI_Request send_request, recv_request;
+  uint8_t send_buffer[2][BUFFER_SIZE], recv_buffer[2][BUFFER_SIZE];
+
+  google::InitGoogleLogging(argv[0]);
+
+  // MPI init
+  MPI_Init(&argc, &argv);
+  MPI_Comm_rank(MPI_COMM_WORLD, &rank);
+  MPI_Comm_size(MPI_COMM_WORLD, &size);
+  // end MPI init
+
+  // aes init
+  w = aes_init(sizeof(key));
+  aes_key_expansion(key, w);
+  // end aes init
+
+  if (rank == 0) {
+    // calculate(0)
+    PIPELINE_SEND(0);
+    for (int i = 1; i < PACKAGE_NUM; ++i) {
+      // calculate(i)
+      PIPELINE_SEND_WAIT();
+      PIPELINE_SEND(i);
+    }
+    PIPELINE_SEND_WAIT();
+  } else if (rank == 1) {
+    PIPELINE_RECV(0);
+    PIPELINE_RECV_WAIT();
+    // calculate(0)
+    PIPELINE_SEND(0);
+    PIPELINE_RECV(1);
+    for (int i = 1; i < PACKAGE_NUM - 1; ++i) {
+      PIPELINE_RECV_WAIT();
+      PIPELINE_RECV(i + 1);
+      // calculate(i)
+      PIPELINE_SEND_WAIT();
+      PIPELINE_SEND(i);
+    }
+    PIPELINE_RECV_WAIT();
+    // calculate(PAKAGE_NUM - 1)
+    PIPELINE_SEND_WAIT();
+    PIPELINE_SEND(PACKAGE_NUM - 1);
+    PIPELINE_SEND_WAIT();
+  } else if (rank == 2) {
+    PIPELINE_RECV(0);
+    for (int i = 1; i < PACKAGE_NUM; ++i) {
+      PIPELINE_RECV_WAIT();
+      PIPELINE_RECV(i);
+      // calculate(i - 1)
+    }
+    PIPELINE_RECV_WAIT();
+    // calculate(PACKAGE_NUM - 1)
+  }
+  MPI_Finalize();
+}