Hi William,

On 2012-06-25, William Stein <wst...@gmail.com> wrote:
> I think OS X is by default slower than Linux at the (like 100,000
> stupid) filesystem calls that Sage does every time it starts up.

If the filesystem calls are stupid then we should try to avoid them. Are
there trac tickets for this? Can you give examples? Are these filesystem
calls perhaps for source code inspection?

My guess is that part of the problem comes from cached methods. Namely,
when the @cached_method decorator is applied, it is tested whether the
to-be-wrapped method has just the argument "self" or has further
arguments; if there are no further arguments, some optimisations take
place. But the problem is: For detecting the number of arguments, one
often enough needs to inspect the source code! See
sage.misc.sageinspect.sage_getargspec.

Anyway. I'll try to see whether I can modify the code in
sage.misc.cachefunc so that source code inspection is avoided.

Best regards,
Simon

-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to