Skip to content

Commit

Permalink
Merge 36279ac into ff8ad23
Browse files Browse the repository at this point in the history
  • Loading branch information
Pansysk75 committed Apr 12, 2023
2 parents ff8ad23 + 36279ac commit 95f5b31
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 22 deletions.
Expand Up @@ -34,9 +34,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 1, 2, 3, 1, 5, 2, 3, 4, 2, 3, 2, 1, 2,
3, 4, 5, 6, 5, 6, 1, 2, 3, 4, 2, 1, 2, 3, 3, 5, 4, 3, 2, 1, 1, 2, 3, 4,
1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 7, 6, 5, 7, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -34,9 +34,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 1, 2, 3, 1, 5, 2, 3, 4, 2, 3, 2, 1, 2,
3, 4, 5, 6, 5, 6, 1, 2, 3, 4, 2, 1, 2, 3, 3, 5, 4, 3, 2, 1, 1, 2, 3, 4,
1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 7, 6, 5, 7, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -29,9 +29,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 1, 2, 3, 3, 5, 5, 3, 4, 2, 3, 2, 1, 2,
3, 4, 5, 6, 5, 6, 1, 2, 3, 4, 1, 1, 2, 3, 4, 5, 4, 3, 2, 1, 1, 2, 3, 4,
1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 7, 6, 5, 7, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -29,9 +29,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 1, 2, 3, 3, 5, 5, 3, 4, 2, 3, 2, 1, 2,
3, 4, 5, 6, 5, 6, 1, 2, 3, 4, 1, 1, 2, 3, 4, 5, 4, 3, 2, 1, 1, 2, 3, 4,
1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 7, 6, 5, 7, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -29,9 +29,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 1, 2, 3, 3, 5, 5, 3, 4, 2, 3, 2, 1, 2,
3, 4, 5, 6, 5, 6, 1, 2, 3, 4, 1, 1, 2, 3, 4, 5, 4, 3, 2, 1, 1, 2, 3, 4,
1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 7, 6, 5, 7, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -29,9 +29,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 1, 2, 3, 3, 5, 5, 3, 4, 2, 3, 2, 1, 2,
3, 4, 5, 6, 5, 6, 1, 2, 3, 4, 1, 1, 2, 3, 4, 5, 4, 3, 2, 1, 1, 2, 3, 4,
1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 7, 6, 5, 7, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -31,9 +31,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 6, 2, 3, 3, 5, 5, 3, 4, 2, 3, 2, 6, 2,
3, 4, 5, 6, 5, 6, 6, 2, 3, 4, 6, 6, 2, 3, 4, 5, 4, 3, 2, 6, 6, 2, 3, 4,
6, 2, 3, 6, 6, 6, 6, 6, 6, 6, 6, 7, 6, 5, 8, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -31,9 +31,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 6, 2, 3, 3, 5, 5, 3, 4, 2, 3, 2, 6, 2,
3, 4, 5, 6, 5, 6, 6, 2, 3, 4, 6, 6, 2, 3, 4, 5, 4, 3, 2, 6, 6, 2, 3, 4,
6, 2, 3, 6, 6, 6, 6, 6, 6, 6, 6, 7, 6, 5, 8, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -31,9 +31,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 6, 2, 3, 3, 5, 5, 3, 4, 2, 3, 2, 6, 2,
3, 4, 5, 6, 5, 6, 6, 2, 3, 4, 6, 6, 2, 3, 4, 5, 4, 3, 2, 6, 6, 2, 3, 4,
6, 2, 3, 6, 6, 6, 6, 6, 6, 6, 6, 7, 6, 5, 8, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -29,9 +29,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 1, 2, 3, 3, 5, 5, 3, 4, 2, 3, 2, 1, 2,
3, 4, 5, 6, 5, 6, 1, 2, 3, 4, 1, 1, 2, 3, 4, 5, 4, 3, 2, 1, 1, 2, 3, 4,
1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 7, 6, 5, 7, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down
Expand Up @@ -29,9 +29,10 @@ void initialize(hpx::partitioned_vector<T>& xvalues)
T init_array[SIZE] = {1, 2, 3, 4, 5, 1, 2, 3, 3, 5, 5, 3, 4, 2, 3, 2, 1, 2,
3, 4, 5, 6, 5, 6, 1, 2, 3, 4, 1, 1, 2, 3, 4, 5, 4, 3, 2, 1, 1, 2, 3, 4,
1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 7, 6, 5, 7, 5, 4, 2, 3, 4, 5, 2};
for (int i = 0; i < SIZE; i++)
typename hpx::partitioned_vector<T>::iterator it = xvalues.begin();
for (int i=0; i<SIZE; i++, it++)
{
xvalues.set_value(i, init_array[i]);
*it = init_array[i];
}
}

Expand Down

0 comments on commit 95f5b31

Please sign in to comment.