X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=profiler.lua;h=f57c9d885f5aa7681e4efbc60ac5ee1442ee00e1;hb=3debf6e5063b03dc620d2ed67c6c155245bfedd8;hp=3bbccaf88ba65e400b26f625ccb971d41bcbde94;hpb=1bc832ac69797a2fabdb4f1dcf758cb415e4f215;p=profiler-torch.git diff --git a/profiler.lua b/profiler.lua index 3bbccaf..f57c9d8 100644 --- a/profiler.lua +++ b/profiler.lua @@ -37,6 +37,16 @@ require 'sys' profiler = {} +profiler.color = true + +profiler.colors = function(name) + if profiler.color then + return sys.COLORS[name] + else + return '' + end +end + function profiler.decorate(model, functionsToDecorate) local functionsToDecorate = functionsToDecorate or @@ -54,7 +64,10 @@ function profiler.decorate(model, functionsToDecorate) -- save models anymore. if rawget(model, name) then - error('We decorate the class, not the objects, and there is a ' .. name .. ' in ' .. model) + error('We decorate the class, not the objects, and there is a `' + .. name + .. '\' function in ' + .. tostring(model)) end local toDecorate = getmetatable(model) @@ -80,27 +93,55 @@ function profiler.decorate(model, functionsToDecorate) end +function profiler.timing(l, t, nbSamples, totalTime) + local s + + s = string.format('%s %.02fs %s[%.02f%%]', + l, t, + profiler.colors('blue'), + 100 * t / totalTime + ) + + if nbSamples then + s = s .. string.format(profiler.colors('green') .. ' (%.01fmus/sample)', 1e6 * t / nbSamples) + end + + s = s .. profiler.colors('black') + + return s +end + function profiler.print(model, nbSamples, totalTime, indent) local indent = indent or '' local hint + if not model.accTime then + error('The model does not seem decorated for profiling.') + end + + local localTotal = 0 + for _, t in pairs(model.accTime) do + localTotal = localTotal + t + end + + totalTime = totalTime or localTotal + if torch.isTypeOf(model, nn.Container) then hint = ' ' else - hint = '*' + if profiler.color then + hint = ' ' + else + hint = '*' + end + hint = hint .. profiler.colors('red') end - print(string.format('%s%s %s', indent, hint, model.__typename)) + print(profiler.timing(indent .. hint .. ' ' .. model.__typename, + localTotal, nbSamples, totalTime)) for l, t in pairs(model.accTime) do - local s = string.format('%s %s %.02fs', indent, l, t) - if totalTime then - s = s .. string.format(' [%.02f%%]', 100 * t / totalTime) - end - if nbSamples then - s = s .. string.format(' (%.01fmus/sample)', 1e6 * t / nbSamples) - end - print(s) + print(profiler.timing(indent .. ' :' .. l, t, nbSamples, totalTime)) end print()