Commit 1fef9106 authored by Po Yen Chen's avatar Po Yen Chen
Browse files

Fix wrong vlayout assumption in example

parent 4633f073
...@@ -764,9 +764,9 @@ bool run(const ck_tile::ArgParser& arg_parser) ...@@ -764,9 +764,9 @@ bool run(const ck_tile::ArgParser& arg_parser)
if(mode == mode_enum::group && 0 < page_block_size) if(mode == mode_enum::group && 0 < page_block_size)
{ {
if(!is_v_rowmajor) if(is_v_rowmajor)
{ {
std::cerr << "make sure input layout is correct: -vlayout=r" << std::endl; std::cerr << "make sure input layout is correct: -vlayout=c" << std::endl;
return false; return false;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment