main.cc 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #include "aes.h"
  2. #include <glog/logging.h>
  3. #include <mpi.h>
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #define BUFFER_SIZE 4096
  8. #define PACKAGE_NUM 4096
  9. // pipeline macros
  10. #define PIPELINE_SEND(idx) \
  11. LOG(INFO) << "Proc" << rank << ": Isend started, idx:" << idx; \
  12. MPI_Isend(send_buffer[(idx) % 2], BUFFER_SIZE, MPI_UINT8_T, rank + 1, idx, \
  13. MPI_COMM_WORLD, &send_request); \
  14. LOG(INFO) << "Proc" << rank << ": Isend finished, idx:" << idx;
  15. #define PIPELINE_SEND_WAIT() \
  16. LOG(INFO) << "Proc" << rank << ": send wait started"; \
  17. MPI_Wait(&send_request, MPI_STATUS_IGNORE); \
  18. LOG(INFO) << "Proc" << rank << ": send wait finished";
  19. #define PIPELINE_RECV(idx) \
  20. LOG(INFO) << "Proc" << rank << ": Irecv started, idx:" << idx; \
  21. MPI_Irecv(recv_buffer[(idx) % 2], BUFFER_SIZE, MPI_UINT8_T, rank - 1, idx, \
  22. MPI_COMM_WORLD, &recv_request); \
  23. LOG(INFO) << "Proc" << rank << ": Irecv finished, idx:" << idx;
  24. #define PIPELINE_RECV_WAIT() \
  25. LOG(INFO) << "Proc" << rank << ": recv wait started"; \
  26. MPI_Wait(&recv_request, MPI_STATUS_IGNORE); \
  27. LOG(INFO) << "Proc" << rank << ": recv wait finished";
  28. // end pipeline macros
  29. // aes variables
  30. #define AES_ONCE 16
  31. uint8_t key[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  32. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
  33. 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
  34. 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f};
  35. uint8_t *w;
  36. uint8_t in[AES_ONCE], out[AES_ONCE];
  37. // aes variables
  38. int main(int argc, char *argv[]) {
  39. int rank, size;
  40. MPI_Request send_request, recv_request;
  41. uint8_t send_buffer[2][BUFFER_SIZE], recv_buffer[2][BUFFER_SIZE];
  42. google::InitGoogleLogging(argv[0]);
  43. // MPI init
  44. MPI_Init(&argc, &argv);
  45. MPI_Comm_rank(MPI_COMM_WORLD, &rank);
  46. MPI_Comm_size(MPI_COMM_WORLD, &size);
  47. // end MPI init
  48. // aes init
  49. w = aes_init(sizeof(key));
  50. aes_key_expansion(key, w);
  51. // end aes init
  52. if (rank == 0) {
  53. // calculate(0)
  54. PIPELINE_SEND(0);
  55. for (int i = 1; i < PACKAGE_NUM; ++i) {
  56. // calculate(i)
  57. PIPELINE_SEND_WAIT();
  58. PIPELINE_SEND(i);
  59. }
  60. PIPELINE_SEND_WAIT();
  61. } else if (rank == 1) {
  62. PIPELINE_RECV(0);
  63. PIPELINE_RECV_WAIT();
  64. // calculate(0)
  65. PIPELINE_SEND(0);
  66. PIPELINE_RECV(1);
  67. for (int i = 1; i < PACKAGE_NUM - 1; ++i) {
  68. PIPELINE_RECV_WAIT();
  69. PIPELINE_RECV(i + 1);
  70. // calculate(i)
  71. PIPELINE_SEND_WAIT();
  72. PIPELINE_SEND(i);
  73. }
  74. PIPELINE_RECV_WAIT();
  75. // calculate(PAKAGE_NUM - 1)
  76. PIPELINE_SEND_WAIT();
  77. PIPELINE_SEND(PACKAGE_NUM - 1);
  78. PIPELINE_SEND_WAIT();
  79. } else if (rank == 2) {
  80. PIPELINE_RECV(0);
  81. for (int i = 1; i < PACKAGE_NUM; ++i) {
  82. PIPELINE_RECV_WAIT();
  83. PIPELINE_RECV(i);
  84. // calculate(i - 1)
  85. }
  86. PIPELINE_RECV_WAIT();
  87. // calculate(PACKAGE_NUM - 1)
  88. }
  89. MPI_Finalize();
  90. }