Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/xlua.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Farabet <clement.farabet@gmail.com>2012-10-26 09:02:41 +0400
committerClement Farabet <clement.farabet@gmail.com>2012-10-26 09:02:41 +0400
commit0369f078ad46b83aa7a8823ea6a4f76b0b9a39a3 (patch)
treed407207d4f1745c0f52a2f4e20440b9acae874aa /init.lua
parent4361404aff51e48934a1960d6256a33bd9c0e5da (diff)
erased length++
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 28afc91..7ff364d 100644
--- a/init.lua
+++ b/init.lua
@@ -262,8 +262,8 @@ function progress(current, goal)
end
glob.io.write('] ')
-- time stats
- for i=1,30 do glob.io.write(' ') end
- for i=1,30 do glob.io.write('\b') end
+ for i=1,50 do glob.io.write(' ') end
+ for i=1,50 do glob.io.write('\b') end
local elapsed = timer:time().real
local step = (elapsed-lasttime) / (current-lastindex)
if current==lastindex then step = 0 end