File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -614,12 +614,11 @@ class HierarchicalTimer(object):
614
614
When implementing an algorithm, it is often useful to collect detailed
615
615
hierarchical timing information. However, when communicating a timing
616
616
profile, it is often best to retain only the most relevant information
617
- in a flattened data structure. In the following example, suppose a
618
- theoretical analysis tells us that either subroutine ``"c"`` or ``"f"``
619
- should be the bottleneck, depending on problem data. We would like to
620
- generate a timing profile that displays only the time spent in these
621
- two subroutines in a flattened structure so that they are easy to
622
- compare. To do this, we
617
+ in a flattened data structure. In the following example, suppose we
618
+ want to compare the time spent in the ``"c"`` and ``"f"`` subroutines.
619
+ We would like to generate a timing profile that displays only the time
620
+ spent in these two subroutines, in a flattened structure so that they
621
+ are easy to compare. To do this, we
623
622
624
623
#. Ignore subroutines of ``"c"`` and ``"f"`` that are unnecessary for\
625
624
this comparison
You can’t perform that action at this time.
0 commit comments