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
The base class of the routing kernels, packet_queue, has a lot of branches and accesses data members at runtime that can be otherwise done at compile time. Just running test_tx_rx (Traffic generator to receiver bandwidth test), the baseline is 0.84 B/cycle and wall clock bandwidth is 22.86 MB/s. After changing the if statements to compile time it increased to 0.95 B/cycle and 26.45 MB/s.
The text was updated successfully, but these errors were encountered:
The base class of the routing kernels,
packet_queue
, has a lot of branches and accesses data members at runtime that can be otherwise done at compile time. Just runningtest_tx_rx
(Traffic generator to receiver bandwidth test), the baseline is 0.84 B/cycle and wall clock bandwidth is 22.86 MB/s. After changing theif
statements to compile time it increased to 0.95 B/cycle and 26.45 MB/s.The text was updated successfully, but these errors were encountered: