aboutsummaryrefslogtreecommitdiff
path: root/mg2d.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2019-03-26 17:29:53 +0100
committerAnton Khirnov <anton@khirnov.net>2019-03-26 17:30:25 +0100
commit0e3f76cc16fa93a2b8d58922bae090828bfbf05a (patch)
tree0ad6ef2562b87ff75c834065341eb0751095e2e6 /mg2d.c
parent9dc3b1d7f2a3cb2a072b62370ea192b4ebad9a36 (diff)
egs_exact: avoid explicit matrix transpoe
Diffstat (limited to 'mg2d.c')
-rw-r--r--mg2d.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/mg2d.c b/mg2d.c
index a1d6950..01c7624 100644
--- a/mg2d.c
+++ b/mg2d.c
@@ -814,9 +814,8 @@ void mg2d_print_stats(MG2DContext *ctx, const char *prefix)
p += ret;
} else if (e) {
ret = snprintf(p, sizeof(buf) - (p - buf),
- " %2.2f%% const %2.2f%% transp %2.2f%% bicgstab %2.2f%% lu %2.2f%% export",
+ " %2.2f%% const %2.2f%% bicgstab %2.2f%% lu %2.2f%% export",
e->time_mat_construct * 100.0 / level->solver->time_total,
- e->time_mat_transpose * 100.0 / level->solver->time_total,
e->time_bicgstab_solve * 100.0 / level->solver->time_total,
e->time_lu_solve * 100.0 / level->solver->time_total,
e->time_export * 100.0 / level->solver->time_total);