ROC profiler prototype sources importing

This commit is contained in:
Evgeny
2017-11-09 17:26:19 -06:00
parent 54156e1953
commit 85278f08a0
63 changed files with 7598 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include <hsa.h>
#include <string.h>
#include <iostream>
#include "ctrl/run_kernel.h"
#include "ctrl/test_aql.h"
#include "simple_convolution/simple_convolution.h"
int main(int argc, char** argv) {
TestHsa::HsaInstantiate();
for (int i = 0; i < 3; ++i) RunKernel<SimpleConvolution, TestAql>(argc, argv);
TestHsa::HsaShutdown();
return 0;
}