reset_profiler
paddle.fluid.profiler.
reset_profiler
()[源代码]
清除之前的性能分析记录。此接口不能和 cuda_profiler 一起使用 ,但它可以和 start_profiler 、stop_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()
- # ...