|
PyList_SetItem(rtt_samples, 0, PyLong_FromLong(first_ack_latency_sec)); |
The latency values here are doubles. Treating as long variables will make them zeros and lead all RTT samples to be zeros. Thus, this will cause a wrong observation to be fed into the RL model.
PCC-Uspace/src/pcc/rate_control/pcc_python_rc.cpp
Line 162 in 2c4853a
The latency values here are doubles. Treating as long variables will make them zeros and lead all RTT samples to be zeros. Thus, this will cause a wrong observation to be fed into the RL model.