From 6a7cba417432a750391c832ad18e805bbf03ab3e Mon Sep 17 00:00:00 2001 From: weixing Date: Tue, 3 Apr 2018 17:31:33 +0800 Subject: [PATCH] Update cpu_profiling_en.md --- doc/fluid/howto/optimization/cpu_profiling_en.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/doc/fluid/howto/optimization/cpu_profiling_en.md b/doc/fluid/howto/optimization/cpu_profiling_en.md index 4447db252f..e95556dd60 100644 --- a/doc/fluid/howto/optimization/cpu_profiling_en.md +++ b/doc/fluid/howto/optimization/cpu_profiling_en.md @@ -57,15 +57,6 @@ port, we will see the output like the following: where each line corresponds to Python function, and the meaning of 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 | -| 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 | -| filename:lineno(function) | where the function is defined | - -- GitLab