Hood Chatham
Hood Chatham
@rrazaghi I think the best approach might be to run the configure script on the host system (needed to disable libcurl and lzma) and then patch the build script for...
So you can do: ```js loadingBarProgress = math.min((loaded) /(compressedSize * 3), 1); if(loadingDone || loadingBarProgress === 1){ switchToCompilerSpinner(); } ``` It's not clear to me that it's possible to do...
You seem to be hitting bugs in our scipy port. The current status of the scipy test suite is that... part of it passes. Last I checked the status of...
The root cause of the problem is that we don't have a working fortran compiler. See: https://github.com/scipy/scipy/issues/15290
No, leave it open, it isn't fixed.
See #2728 for an example of the kind of thing that can cause these failures...
`linalg/_isolve/tests/test_gcrotmk.py::TestGCROTMK::test_cornercase` seems to cause memory corruption which may have something to do with the weirder problems you see.
Sometimes I see: ```py Traceback (most recent call last): File "/lib/python3.10/site-packages/_pyodide/_base.py", line 431, in eval_code .run(globals, locals) File "/lib/python3.10/site-packages/_pyodide/_base.py", line 300, in run coroutine = eval(self.code, globals, locals) File "",...
It must be due to early memory corruption destroying the Python vm's data structures.
I think the main problem is that `gcrotmk` corrupts memory. The following usually reproduces the problem: ``` await pyodide.loadPackage(["scipy"]) pyodide.runPython(` import numpy as np from scipy.sparse import eye from scipy.sparse.linalg._isolve...