|
|
|
|
|
by ptx
3 days ago
|
|
> During voice agent startup, the slowest part are [...] in dlopen-ing large shared libraries (ONNX Runtime in particular) and in hundreds of small random reads off the SD card as Python walks the import graph. Could this maybe be fixed by arranging the files on the filesystem in the order they're read? Or maybe importing the Python modules from a zip file (with no compression) would be faster, if that makes it easier to store them in the required order? I seem to remember Windows having some sort of feature like that, automatically rearraging the data on disk in the order it's read when booting the system. |
|