-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve RP2 Network Performance Issue #10027
Conversation
…rval. Update lwIP to current top of tree with local changes.
@bablokb Forgot the pre-commit hook in my repo, but the build artifacts should be fine. Please give it a try. |
Ok, I've merged it into adafruit/lwip. Looks like they are about to release 2.2.1 too. |
Using PR artifacts, simple non-TLS HTTP response on Pico W HTTP is now consistently under 50ms (ranged from 30-250ms with 9.2.4), on Pimoroni Pico Plus 2 W it's now 15-25ms (also ranged from 30-250ms with 9.2.4). HTTPS on Pimoroni Pico Plus 2 W is now 1-2sec. Slight improvement from 1.5-2.25sec. HTTPS on Pico W now times out rather than getting Measurements are approximate: they are from the server-reported times with httpserver debug turned on. |
@anecdata Thank you for testing this out. Much appreciated. Where this update should also help is with stability and throughput. Switching to all dynamic allocations for lwIP reduces the static RAM size from 116K to 72K, good for the memory-constrained RP2040. Of course lwIP will consume memory for control blocks and buffers, but how much memory that costs depends on the app, not on a guess of the size of a given static allocation pool. We were blowing through some of the static allocations in some cases causing lwIP to slow way down. |
Tested this with the original setup. Page load with 9 requests is now down to about 1.2s (ranging from 1.1-1.8, repeated loads are mostly below 1.2s). So this is a huge improvement. I also repeated the iperf3-test. Throughput is up from 389 Kbits/sec (see #9837) to 3.95 Mbits/sec now. Do you see any chance that I could backport this to 8.0.5? I know this is a very old version, but I need it due to memory constrains (independent of network use). 8.0.5 has 152K to start with, while 9.2.4 has 128K.
|
@bablokb Thank you the tests! This update depends on |
@tannewt Please |
Good point. Just checked: the PR-artifact has 128K available, 9.2.4 has 71K available but 9.0.0 was at 125K. What in the hell did they add in between?! The 125K from 9.0.0 were about 7K short (even without any networking, wifi never imported). So maybe if I can find and remove the bloat from 9.0.0 to 9.2.4 it might even work. Going back to nm and objdump... |
@bablokb That's interesting. There could be another library using static allocations that got added or reconfigured after 9.0.0. |
According to https://git.savannah.gnu.org/cgit/lwip.git, it looks like lwip 2.2.1 was released yesterday?? |
Crazy coincidence or preternatural foresight? |
I retested and it turned out to be a wrong assumption about what happens when entering the REPL. I used this code:
from the REPL and from code.py. Depending on what happened before you enter the REPL (with CTRL-C), results are extremely different. So running from code.py 9.2.4 gives me 138K and your PR 183K which should be enough for my needs. The 128K cited above for the PR-artifact was after my iperf-tests, the 71K for 9.2.4 was after a different test using wifi and a display. |
@anecdata The RP2350 has hardware acceleration for SHA-256 controlled by |
USB Host was added and it has code that needs to live in RAM (so it can run while flash accesses happen). We don't load it when we need it so it's always there. |
The difference I noticed was actually due to the fact that the REPL does not garbage-collect before it starts - something I wasn't aware off. So nothing was added, the lower RAM was only due to whatever ran before the REPL started. |
I retested the newest artifact in my target setup. Works great. This PR is a game-changer. It does not only change network performance, but with this PR there is also much more memory available. Until now I was stuck with 8.0.5 with the Pico-W, because all versions afterwards did not provide enough memory, but with this PR I can leave 8.0.5 behind. Definitely the MVP (most-valuable PR) award from my side. Looking forward to see this in a release. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Thank you!
Side-setting can also be used to change pin directions instead of pin values. This adds a parameter `side_pindir` to decorator `asm_pio()` to configure it. Also replaces a few close-by 0s with corresponding PIO.* constants. Addresses issue adafruit#10027. Signed-off-by: Markus Gyger <[email protected]>
This update resolves issue #9837. It makes the following changes:
For now it's on a branch in my private repo: https://github.com/eightycc/lwip/tree/circuitpython9.