TrinitySMI::append_reqs () {
ss_ << "\n";
ss_ << "+------------------------------------------------------------+\n";
- ss_ << "| req ID | MODEL ID | PRIO | STATUS | SCHED | INFER |\n";
+ ss_ << "| REQ ID | MODEL ID | PRIO | STATUS | SCHED | INFER |\n";
ss_ << "|============================================================|\n";
#ifndef ENABLE_EMUL
else
status_str = string ("unknown");
- ss_ << "| " << right << setw (7) << stat->req_id << " ";
+ ss_ << "| " << right << setw (6) << stat->req_id << " ";
ss_ << "| " << right << setw (10) << to_hex_string (stat->model_id) << " ";
ss_ << "| " << right << setw (4) << priority_str << " ";
ss_ << "| " << right << setw (8) << status_str << " ";
ss_ << "| " << right << setw (7) << to_string (stat->sched_time) + "ms"
<< " ";
- ss_ << "| " << right << setw (7) << to_string (stat->infer_time) + "ms"
+ ss_ << "| " << right << setw (8) << to_string (stat->infer_time) + "ms"
<< " |\n";
count++;
}