Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
rasolca committed Jun 19, 2024
1 parent ef014c9 commit 596347d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions miniapp/miniapp_triangular_multiplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,10 @@ struct triangularMultiplicationMiniapp {
auto elapsed_time = timeit.elapsed();
double gigaflops = total_ops / elapsed_time / 1e9;

std::cout << "[" << run_index << "]" << " " << elapsed_time << "s" << " " << gigaflops
<< "GFlop/s" << " " << dlaf::internal::FormatShort{opts.type}
std::cout << "[" << run_index << "]"
<< " " << elapsed_time << "s"
<< " " << gigaflops << "GFlop/s"
<< " " << dlaf::internal::FormatShort{opts.type}
<< dlaf::internal::FormatShort{opts.side} << dlaf::internal::FormatShort{opts.uplo}
<< dlaf::internal::FormatShort{opts.op} << dlaf::internal::FormatShort{opts.diag}
<< " " << bh.size() << " " << bh.blockSize() << " " << comm_grid.size() << " "
Expand Down

0 comments on commit 596347d

Please sign in to comment.