From 7ed48bd0c0f98b53df4588e8fdae73cd4c233f09 Mon Sep 17 00:00:00 2001 From: "Yang Yang(Tony)" Date: Tue, 23 Jan 2018 17:36:24 -0800 Subject: [PATCH] Update cpu_profiling.md (#7803) --- doc/howto/optimization/cpu_profiling.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/howto/optimization/cpu_profiling.md b/doc/howto/optimization/cpu_profiling.md index 1775374cf6..368af40cc7 100644 --- a/doc/howto/optimization/cpu_profiling.md +++ b/doc/howto/optimization/cpu_profiling.md @@ -60,8 +60,7 @@ each column is as follows: | column | meaning | | --- | --- | | ncalls | the number of calls into a function | -| tottime | the total execution time of the function, not including the - execution time of other functions called by the function | +| tottime | the total execution time of the function, not including the execution time of other functions called by the function | | percall | tottime divided by ncalls | | cumtime | the total execution time of the function, including the execution time of other functions being called | | percall | cumtime divided by ncalls | -- GitLab