Skip to content
Snippets Groups Projects
Commit 8955b9e1 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing memBW when nvcc is not there

parent c00334cb
No related branches found
No related tags found
No related merge requests found
Pipeline #4020 passed
#ifdef __NVCC__
#include "Vector/map_vector.hpp"
#include "util/stat/common_statistics.hpp"
......@@ -58,3 +60,12 @@ int main(int argc, char *argv[])
std::cout << "BW: " << nele*4*19 / t.getwct() * 1e-9 << " GB/s" << std::endl;
}
}
#else
int main(int argc, char *argv[])
{
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment