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
When I used it on mobile, it caused the process to stall. Here's the part of the code that got stuck:
np.arange(1);
var PyThread = PythonEngine.BeginAllowThreads();
This leaves me unsure of the cause.
I noticed that Numpy.dll was shipped for the netstandard2.0 platform. Should this be a cross-platform library, or am I using it incorrectly?
The text was updated successfully, but these errors were encountered:
You could in theory create a linux version by compiling Numpy.Bare from source and using a numpy wheel that was compiled specifically for the mobile platform you are targeting.
You could in theory create a linux version by compiling Numpy.Bare from source and using a numpy wheel that was compiled specifically for the mobile platform you are targeting.
Thank you for your reply. I will try to compile the source code to see if it can be used on the mobile terminal.
When I used it on mobile, it caused the process to stall. Here's the part of the code that got stuck:
np.arange(1);
var PyThread = PythonEngine.BeginAllowThreads();
This leaves me unsure of the cause.
I noticed that Numpy.dll was shipped for the netstandard2.0 platform. Should this be a cross-platform library, or am I using it incorrectly?
The text was updated successfully, but these errors were encountered: