ibuffer addition

This commit is contained in:
Blaise Tine
2020-08-22 00:22:04 -07:00
parent 6c12391338
commit 0b355f228e
80 changed files with 1811 additions and 1528 deletions

View File

@@ -155,7 +155,7 @@ int run_kernel_test(const kernel_arg_t& kernel_arg,
int32_t curr = ((int32_t*)vx_host_ptr(buffer))[i];
int32_t ref = i;
if (curr != ref) {
std::cout << "error at value " << i
std::cout << "error at result #" << i
<< ": actual 0x" << curr << ", expected 0x" << ref << std::endl;
++errors;
}
@@ -238,7 +238,7 @@ int main(int argc, char *argv[]) {
std::cout << "cleanup" << std::endl;
cleanup();
std::cout << "Test PASSED" << std::endl;
std::cout << "Test PASSED" << std::endl;
return 0;
}