DD1984 / sockperf

Automatically exported from code.google.com/p/sockperf
Other
1 stars 0 forks source link

Labels wrong in tp mode when using --increase_output_precision #57

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. Read the code, src/Client.cpp, lines 318, 321 and 324

What is the expected output? What do you see instead?

According to lines 318 and 324, values is in MBps, divided by 1000 to convert 
to GBps.

At line 321, labels are GBps but the value isn't divided => wrong label

What version of the product are you using? On what operating system?

Latest HEAD on RH6

Please provide any additional information below.

-                       log_msg("Summary: BandWidth is %.9f GBps (%.9f Gbps)", 
MBps, MBps*8);
+                       log_msg("Summary: BandWidth is %.9f MBps (%.9f Mbps)", 
MBps, MBps*8);

Original issue reported on code.google.com by tgu...@gmail.com on 20 Jan 2015 at 3:21

Attachments: