Download cpp source code

/*
 * Copyright 2021 Jeisson Hidalgo-Cespedes - Universidad de Costa Rica
 * Creates a secondary thread that greets in the standard output
 */

#include <mpi.h>
#include <iomanip>
#include <iostream>
#include <cstdint>
#include <vector>

int main(int argc, char* argv[]) {
  if (MPI_Init(&argc, &argv) == MPI_SUCCESS) {
    int my_rank = -1;
    MPI_Comm_rank(MPI_COMM_WORLD, &my_rank);

    int process_count = -1;
    MPI_Comm_size(MPI_COMM_WORLD, &process_count);

    char hostname[MPI_MAX_PROCESSOR_NAME];
    int hostname_len = -1;
    MPI_Get_processor_name(hostname, &hostname_len);

    std::vector<int64_t> numbers;
    double start_time = MPI_Wtime();

    if (my_rank == 0) {
      int64_t number = 0;
      while (std::cin >> number) {
        numbers.push_back(number);
      }
    }

    size_t number_count = numbers.size();

    MPI_Bcast(&number_count, /*count*/ 1, MPI_UINT64_T, /*root*/ 0
      , MPI_COMM_WORLD);

    if (my_rank != 0) {
      numbers.resize(number_count);
    }

    MPI_Bcast(&numbers[0], number_count, MPI_INT64_T, /*root*/ 0
      , MPI_COMM_WORLD);

    double elapsed = MPI_Wtime() - start_time;

    std::cout << "Process " << my_rank << " got " << numbers.size()
      << " numbers in " << std::fixed << std::setprecision(9) << elapsed
      << "s" << std::endl;

    MPI_Finalize();
  } else {
    std::cout << "Error: could not init MPI environment" << std::endl;
  }
  return 0;
}