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
{{ message }}
This repository was archived by the owner on Jan 23, 2020. It is now read-only.
There is code at the start of visual_all.py that tries to make sure that sqrt(x) uses the math function rather than the numpy function if x is a simple float, because the numpy version is surprisingly slow if x isn't a numpy array. This code seems to assume that all the treated functions take one argument, but in fact ldexp and frexp take two arguments. Probably these two function should simply be eliminated from the special treatment in visual_all.py.