mirror of
https://github.com/zeromq/libzmq
synced 2025-03-28 21:13:24 +00:00
Problem: Throughput calculation underestimates slow messages
Solution: Use a double for messages per second and calculate Megabits per second using it. Truncate messages per second only in the reported output.
This commit is contained in:
parent
78b26d7ac2
commit
84ab771808
@ -49,7 +49,7 @@ int main (int argc, char *argv [])
|
||||
zmq_msg_t msg;
|
||||
void *watch;
|
||||
unsigned long elapsed;
|
||||
unsigned long throughput;
|
||||
double throughput;
|
||||
double megabits;
|
||||
int curve = 0;
|
||||
|
||||
@ -138,7 +138,7 @@ int main (int argc, char *argv [])
|
||||
return -1;
|
||||
}
|
||||
|
||||
throughput = (unsigned long)
|
||||
throughput =
|
||||
((double) message_count / (double) elapsed * 1000000);
|
||||
megabits = ((double) throughput * message_size * 8) / 1000000;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user