Update.
[profiler-torch.git] / test-profiler.lua
index 2f1f0ec..7c22576 100755 (executable)
@@ -49,6 +49,7 @@ local model = nn.Sequential()
 -- Decor it for profiling
 
 profiler.decor(model)
+print()
 
 -- Create the data and criterion
 
@@ -86,7 +87,8 @@ end
 -- Print the accumulated timings
 
 profiler.print(model, nbSamples)
+-- profiler.print(model)
 
-print('----------------------------------------------------------------------')
+print()
 print(string.format('Total model time %.02fs', modelTime))
 print(string.format('Total data time %.02fs', dataTime))