Raphael Rossi
Raphael Rossi
> Thanks for your interest in contributing! :) > > What was the rationale behind this change? Prettylog was designed to operate on the output of a single app, and...
Thank you @nettoclaudio! I will work on that.
After an analysis, I managed to find where memory usage is increasing, this may help to find where is the problem. ```python Line # Mem usage Increment Occurrences Line Contents...
Thank you @fdintino ! Using `speed=10` it really slightly reduced memory usage. But when `enc.finish()` was called, no memory was released. You can see below: ``` Line # Mem usage...
even force a `gc.collect()` call the memory was not released. ``` Line # Mem usage Increment Occurrences Line Contents ============================================================= 10 58.2 MiB 58.2 MiB 1 @profile 11 async def...
I used this lib to profile memory https://pypi.org/project/memory-profiler/ But now I removed this profile decorator and use `psutil` to measure the memory. ``` python process.py running process 0 54.60546875 [log...
When you run this script, Is the memory being deallocated after processing ends? Or just when the script ends?
after some another tests, I built `pillow-avif-plugin` using `libsvtav1enc1 1.4.1+dfsg-1`. This dramatic decrease the amount memory used to process an AVIF image and able to reuse this resident memory while...
My mistake, I tested with docker plataform `linux/arm64` but my production environment is `linux/x86_64`. With `linux/arm64` the `libsvtav1enc1 1.4.1+dfsg-1` used memory in a more efficient way, but on the other...
@scorphus @heynemann What do you think?