Benchmark copy of data from one pool to another pool either in

one or both directions. Users can enumerate the pools reported
  by system to specify which pools serve as source / destination

Change-Id: I8e6d0adb3743b3328dd3ce9152762ca840ea613b
This commit is contained in:
Ramesh Errabolu
2017-09-12 19:28:15 -05:00
parent 34602f7e95
commit c2caa5ae2c
19 changed files with 2570 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#include <unistd.h>
#include <iostream>
#include "hsatimer.hpp"
#include "rocm_async.hpp"
using namespace std;
int main(int argc, char** argv) {
// Create the Bandwidth test object
RocmAsync bw_test(argc, argv);
// Initialize the Bandwidth test object
bw_test.SetUp();
// Run the Bandwidth tests requested by user
bw_test.Run();
// Display the time taken by various tests
bw_test.Display();
// Release the Bandwidth test object resources
bw_test.Close();
return 0;
}