Skip to content

Commit dadd90e

Browse files
committed
Rename report heading
1 parent e0d6471 commit dadd90e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/imatrix/imatrix.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@ static bool show_statistics(const common_params & params) {
12991299
};
13001300
std::map<int, layer_stats> ls;
13011301

1302-
LOG_INF("\nComputing statistics for %s (%d tensors)\n", params.in_files[0].c_str(), static_cast<int>(ts.size()));
1302+
LOG_INF("\nComputing tensor statistics for %s (%d tensors)\n", params.in_files[0].c_str(), static_cast<int>(ts.size()));
13031303
LOG_INF("\n%6s\t%18s\t%13s\t%8s\t%8s\t%7s\t%15s\t%13s\t%12s\t%s\t%5s\t%10s\n",
13041304
"Layer",
13051305
"Tensor",
@@ -1361,7 +1361,7 @@ static bool show_statistics(const common_params & params) {
13611361
compute_layer_statistics(ts, lyr_cossim, lyr_l2_norm, g_collector.get_mstats());
13621362

13631363
const auto layers = std::count_if(ls.begin(), ls.end(), [](const auto & kv) { return kv.first >= 0; });
1364-
LOG_INF("\nComputing aggregated statistics per layer (%ld layers)\n", layers);
1364+
LOG_INF("\nComputing layer statistics (%ld layers)\n", layers);
13651365
LOG_INF("\n%6s\t%13s\t%5s\t%10s\n",
13661366
"Layer",
13671367
legacy_mode ? "Σ(Act²)" : "L₂ Norm",

0 commit comments

Comments
 (0)