Skip to content

Commit

Permalink
1000 iterations, stride=512
Browse files Browse the repository at this point in the history
  • Loading branch information
cwpearson committed Dec 28, 2020
1 parent f37258d commit 855c01e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions bin/bench_mpi_pingpong_nd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ int main(int argc, char **argv) {
if (environment::noTempi) {
nIters = 5;
} else {
nIters = 200;
nIters = 1000;
}
std::string s;

Expand All @@ -138,14 +138,14 @@ int main(int argc, char **argv) {
"(MiB/s), bandwidth agg (MiB/s)\n";
}

totals = {1024, 1024 * 1024};
totals = {1024, 1024 * 1024, 4 * 1024 * 1024};
std::vector<int64_t> counts{1,2};
std::vector<Factory2D> factories2d{
Factory2D{make_2d_byte_vector, "2d_byte_vector"}
//Factory2D{make_2d_byte_hvector, "2d_byte_hvector"},
//Factory2D{make_2d_byte_subarray, "2d_byte_subarray"}
};
std::vector<int> strides{16,256};
std::vector<int> strides{512};

for (int total : totals) {
for (int count : counts) {
Expand Down
4 changes: 2 additions & 2 deletions bin/bench_pack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ int main(int argc, char **argv) {
if (environment::noTempi) {
nIters = 5;
} else {
nIters = 200;
nIters = 1000;
}

std::vector<bool> stages{
Expand All @@ -127,7 +127,7 @@ int main(int argc, char **argv) {
65536, 262144, 1048576, 1048576 * 4};
std::vector<int> contigs{1, 2, 4, 8, 12, 16, 20, 24, 32, 64, 128, 256};

int stride = 256;
int stride = 512;
bool stage;

// zero-copy pack time
Expand Down

0 comments on commit 855c01e

Please sign in to comment.