Commit 6282a299 authored by hasan.bahjat's avatar hasan.bahjat 💬

Fix Issues in wanring

parent 18d79ec1
...@@ -115,7 +115,7 @@ int main(int argc, char** argv) { ...@@ -115,7 +115,7 @@ int main(int argc, char** argv) {
srand(time(0) + rank); srand(time(0) + rank);
// Random integer between 0 and 99 (this is first simple intutyion in the next stage i will replace it with array ) // Random integer between 0 and 99 (this is first simple intutyion in the next stage i will replace it with array )
int localValue = rand() % 100; //int localValue = rand() % 100;
const int ARRAY_SIZE = 5; // Length of each process's array const int ARRAY_SIZE = 5; // Length of each process's array
vector<int> localArray(ARRAY_SIZE); vector<int> localArray(ARRAY_SIZE);
...@@ -135,7 +135,7 @@ int main(int argc, char** argv) { ...@@ -135,7 +135,7 @@ int main(int argc, char** argv) {
//[1] Use the naive implementation of MPI_Allreduce //[1] Use the naive implementation of MPI_Allreduce
int globalValue = 0; // int globalValue = 0;
// Start timing // Start timing
double start_time_naive = MPI_Wtime(); double start_time_naive = MPI_Wtime();
...@@ -166,14 +166,14 @@ int main(int argc, char** argv) { ...@@ -166,14 +166,14 @@ int main(int argc, char** argv) {
print(globalArrayNaive,rank,message); print(globalArrayNaive,rank,message);
// [2] Use the built-in MPI_Allreduce for comparison // [2] Use the built-in MPI_Allreduce for comparison
int globalValueBuiltIn = 0; // int globalValueBuiltIn = 0;
// Start timing // Start timing
double start_time_builtin = MPI_Wtime(); double start_time_builtin = MPI_Wtime();
// Mpi Alllreduce buld in // Mpi Alllreduce buld in
// MPI_Allreduce( // MPI_Allreduce(
// &localValue, // &localValue,
// &globalValueBuiltIn, // &globalArrayBuiltin,
// 1, MPI_INT, // 1, MPI_INT,
// MPI_SUM, // MPI_SUM,
// MPI_COMM_WORLD // MPI_COMM_WORLD
......
...@@ -133,8 +133,6 @@ int main(int argc, char** argv) { ...@@ -133,8 +133,6 @@ int main(int argc, char** argv) {
// seed with time and rank for unique values // seed with time and rank for unique values
srand(time(0) + rank); srand(time(0) + rank);
// random integer between 0 and 99 (this is first simple intutyion in the next stage i will replace it with array )
int localValue = rand() % 100;
// define a : // define a :
// local array for the local reduction // local array for the local reduction
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment