You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to add the following code in editdist.c to see the total communication size:
size_t=comm_size=tcp2PBytesSent(&pd);
printf("total communication size: %zu\n, comm_size";
And it shows the communication size is zero. I have already looked into other related issues, and added these codes in editdist.c:
//protocolUseStdio(&pd);constchar*remote_host= (strcmp(argv[2],"--")?argv[2]:NULL); // original code in editdist.cocTestUtilTcpOrDie(&pd,remote_host,argv[1]); // original code in editdist.cprotocolConnectTcp2PProfiled(&pd,remote_host,argv[1]);
But it is still showing 0 communication size.
The text was updated successfully, but these errors were encountered:
I tried to add the following code in editdist.c to see the total communication size:
And it shows the communication size is zero. I have already looked into other related issues, and added these codes in editdist.c:
But it is still showing 0 communication size.
The text was updated successfully, but these errors were encountered: