On Wed, Mar 30, 2011 at 12:17:06AM -0700, Simon King wrote: > I tested, and found that cpdef'ing does not help (much): > > With def: > sage: R.<x,y> = QQ['t'][] > sage: timeit('R.base_ring') > 625 loops, best of 3: 967 ns per loop > > With cpdef: > sage: R.<x,y> = QQ['t'][] > sage: timeit('R.base_ring') > 625 loops, best of 3: 958 ns per loop > > Manually defining R.base_ring = R.base_ring: > sage: timeit('R.base_ring') > 625 loops, best of 3: 896 ns per loop
I expected a potential improvement not when calling base_ring from the interpreter, but from compiled Cython code, typically in coercion/arithmetic. Cheers, Nicolas -- Nicolas M. ThiƩry "Isil" <nthi...@users.sf.net> http://Nicolas.Thiery.name/ -- 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