*** empty log message ***

svn path=/trunk/boinc/; revision=1933
This commit is contained in:
Karl Chen 2003-08-01 07:59:52 +00:00
parent fa5964eb15
commit 00823d6ce2
1 changed files with 4 additions and 4 deletions

View File

@ -399,10 +399,10 @@ int CLIENT_STATE::cpu_benchmarks() {
// need to check cache!!
host_info.m_cache = 1e6;
msg_printf(NULL, MSG_INFO, "Benchmark results: FP: %.0f%s; Int: %.0f%s; Mem BW: %.0f%s",
host_info.p_fpops, (host_info.p_fpop_err?" [ERROR]":""),
host_info.p_iops, (host_info.p_iop_err?" [ERROR]":""),
host_info.p_membw, (host_info.p_membw_err?" [ERROR]":"")
msg_printf(NULL, MSG_INFO, "Benchmark results: FP: %.0fe6%s; Int: %.0fe6%s; Mem BW: %.0fe6%s",
host_info.p_fpops/1e6, (host_info.p_fpop_err?" [ERROR]":""),
host_info.p_iops/1e6, (host_info.p_iop_err?" [ERROR]":""),
host_info.p_membw/1e6, (host_info.p_membw_err?" [ERROR]":"")
);
}