Created
March 20, 2014 15:56
-
-
Save kaka19ace/9667049 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--http://lua-users.org/lists/lua-l/2010-11/msg00241.html | |
--Mike | |
-- Allocate, traverse and collect lots of small objects. | |
-- Shows cache thrashing by the GC. Public domain. | |
local N = 14000000 | |
local T | |
local function alloc(text) | |
local t = {} | |
local x = os.clock() | |
for i=1,N do t[i] = {t} end | |
print(os.clock()-x, "seconds allocation time"..text) | |
T = t | |
end | |
local function collect(text) | |
x = os.clock() | |
collectgarbage() | |
print(os.clock()-x, "seconds for a full GC"..text) | |
T = nil | |
x = os.clock() | |
collectgarbage() | |
print(os.clock()-x, "seconds for a cleanup GC"..text, "\n") | |
end | |
collectgarbage("stop") | |
alloc(" with stopped GC") | |
collect("") | |
collectgarbage("restart") | |
alloc(" with enabled GC") | |
collect("") | |
alloc(" with enabled GC") | |
local random = math.random | |
for i=1,N do T[i][1] = T[random(N)] end | |
collect(" with randomized links") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment