Re: How fast is LuaJIT supposed to be?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: How fast is LuaJIT supposed to be?
- From: Javier Guerra Giraldez <javier@...>
- Date: 2011年1月21日 12:30:40 -0500
On Fri, Jan 21, 2011 at 12:08 PM, Valerio Schiavoni
<valerio.schiavoni@gmail.com> wrote:
>>>> for kk = k*2, max, k do
>
>> faster : for kk = k*k, max, k do
>
> does it mean k*k is faster than k*2 ?
in any case, k*k ~= k*2
i think it's "k*k faster than k^2", or "k+k faster than k*2".......
--
Javier