Re: [sage-devel] timeit in the cloud vs terminal

2015-05-06 Thread William Stein
On Wed, May 6, 2015 at 7:03 AM, jplab wrote: > Hi! > > Compare the following code in the command line and the cloud: > > In the terminal: > > sage: t=timeit('factor(ZZ.random_element(10^40))', seconds=True) > sage: t > 0.019134044647216797 > sage: type(t) > > > In the cloud: > > sage: t=timeit('f

[sage-devel] timeit in the cloud vs terminal

2015-05-06 Thread jplab
Hi! Compare the following code in the command line and the cloud: In the terminal: sage: t=timeit('factor(ZZ.random_element(10^40))', seconds=True) sage: t 0.019134044647216797 sage: type(t) In the cloud: sage: t=timeit('factor(ZZ.random_element(10^40))', seconds=True) 0.0210275173187 sage: t