minor update

This commit is contained in:
Blaise Tine
2021-08-07 12:56:26 -07:00
parent dd984ceb45
commit 7ae5da914e

View File

@@ -58,9 +58,7 @@ void cleanup() {
} }
} }
int run_test(const kernel_arg_t& kernel_arg, int run_test() {
uint32_t buf_size,
uint32_t num_points) {
// start device // start device
std::cout << "start device" << std::endl; std::cout << "start device" << std::endl;
RT_CHECK(vx_start(device)); RT_CHECK(vx_start(device));
@@ -137,7 +135,7 @@ int main(int argc, char *argv[]) {
// run tests // run tests
std::cout << "run tests" << std::endl; std::cout << "run tests" << std::endl;
RT_CHECK(run_test(kernel_arg, buf_size, num_points)); RT_CHECK(run_test());
// cleanup // cleanup
std::cout << "cleanup" << std::endl; std::cout << "cleanup" << std::endl;