You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/tests/comptests/inputs/15_iarray_sieve.lua

31 lines
579 B

local sieve = compiler.load([[
local i: integer, k: integer, prime: integer, count: integer
local flags: integer[] = table.intarray(8190)
for iter=0,100000 do
count = 0
for i=0,8190 do
flags[i] = 1
end
for i=0,8190 do
if flags[i] == 1 then
prime = i + i + 3;
for k = i + prime, 8190, prime do
flags[k] = 0
end
count = count + 1
end
end
end
return count
]]
)
assert(sieve and type(sieve) == 'function')
local t1 = os.clock()
local count = sieve()
local t2 = os.clock()
print("time taken ", t2-t1)
print(count)
assert(count == 1899)