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
Looking into it, it seems to be a very bad idea to compile the python code into binaries. People who write in Python usually believe that Python is "good enough" for most everything. If this isn't true, then this code should be rewritten in a more performant language, like C++ (or C or Rust). Writing in Python first, and then discovering that this was a bad idea and trying to accelerate it using some custom-written compiler isn't a good idea IMO, because it leads to errors like this.
The text was updated successfully, but these errors were encountered:
I agree. I like NNPACK, but the avx2 part should been written with psimd.h like it does for the SSE4.1 instruction set. Now there's a dependency on PeachPy. When porting NNPACK for Windows the src/x86_64-fma/2d-fourier-16x16.py is the only kernel script were things go wrong when generating object code for the Windows platform.
It fails on FreeBSD 12 with this error:
Looking into it, it seems to be a very bad idea to compile the python code into binaries. People who write in Python usually believe that Python is "good enough" for most everything. If this isn't true, then this code should be rewritten in a more performant language, like C++ (or C or Rust). Writing in Python first, and then discovering that this was a bad idea and trying to accelerate it using some custom-written compiler isn't a good idea IMO, because it leads to errors like this.
The text was updated successfully, but these errors were encountered: