Cosmetics.
authorFrancois Fleuret <francois@fleuret.org>
Mon, 5 Dec 2016 10:32:07 +0000 (11:32 +0100)
committerFrancois Fleuret <francois@fleuret.org>
Mon, 5 Dec 2016 10:32:07 +0000 (11:32 +0100)
README.md

index 45ca396..1934345 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,15 +1,15 @@
 
-This is a simple profiler to estimate processing time per module per function. One should call
+This is a simple profiler to estimate processing time per module per function.
 
-  profiler.decorate(model[, functionsToDecorate])
+### profiler.decorate(model, [functionsToDecorate]) ###
 
-before starting the computation. It will replace functions specified in functionsToDecorate by instrumented versions which keep track of computation times. If functionsToDecorate is not provided, it will decorate by default updateOutput and backward.
+This function should be called before starting the computation.
 
-When the computation is over.
+t replaces functions specified in functionsToDecorate by instrumented versions which keep track of computation times. If functionsToDecorate is not provided, it decorates by default updateOutput and backward.
 
-  profiler.print(model[, nbSamples])
+### profiler.print(model, [nbSamples]) ###
 
-will print the measured processing times. If nbSamples is provided, the time per samples will also be printed.
+Prints the measured processing times. If nbSamples is provided, the time per samples will also be printed.
 
 It seems to work okay, but there was no heavy testing so far.