@@ -2801,11 +2801,11 @@ void ggml_perf_print_totals(struct ggml_perf_totals totals[GGML_OP_COUNT]) {
28012801 char padded_backend[7 ] = {0 }; // 6 chars + null terminator
28022802 snprintf (padded_backend, sizeof (padded_backend), " %-6s" , backend_name);
28032803
2804- LLAMA_LOG_TSAVORITE (" %-16s %-8s %7ld %14ld %16ld %16.2f\n " ,
2804+ LLAMA_LOG_TSAVORITE (" %-16s %-8s %7ld %14ld %16ld %16.2f\n " ,
28052805 totals[i].op_name ? totals[i].op_name : " UNKNOWN" ,
28062806 padded_backend,
28072807 totals[i].backend_subtotals [b].runs ,
2808- totals[i].backend_subtotals [b].tsi_kernel_count ,
2808+ totals[i].backend_subtotals [b].tsi_kernel_count ,
28092809 totals[i].backend_subtotals [b].total_us ,
28102810 (double )totals[i].backend_subtotals [b].total_us / totals[i].backend_subtotals [b].runs );
28112811 }
@@ -2831,7 +2831,7 @@ void ggml_perf_print_totals(struct ggml_perf_totals totals[GGML_OP_COUNT]) {
28312831 ggml_unary_op_name ((enum ggml_unary_op) j),
28322832 padded_backend,
28332833 totals[i].unary_subtotals [j].runs ,
2834- totals[i].unary_subtotals [j].tsi_kernel_count ,
2834+ totals[i].unary_subtotals [j].tsi_kernel_count ,
28352835 totals[i].unary_subtotals [j].total_us ,
28362836 (double )totals[i].unary_subtotals [j].total_us / totals[i].unary_subtotals [j].runs );
28372837 }
0 commit comments