Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 727 Bytes

reset_profiler_cn.rst

File metadata and controls

23 lines (14 loc) · 727 Bytes

reset_profiler

.. py:function:: paddle.fluid.profiler.reset_profiler()




清除之前的性能分析记录。此接口不能和 :ref:`cn_api_fluid_profiler_cuda_profiler` 一起使用 ,但它可以和 :ref:`cn_api_fluid_profiler_start_profiler`:ref:`cn_api_fluid_profiler_stop_profiler`:ref:`cn_api_fluid_profiler_profiler` 一起使用。

代码示例

import paddle.fluid as fluid
import paddle.fluid.profiler as profiler
with profiler.profiler('CPU', 'total', '/tmp/profile'):
    for iter in range(10):
        if iter == 2:
            profiler.reset_profiler()
        # ...