https://github.com/Microsoft/CNTK
Raw File
Tip revision: e9dc7c40712d7b5697d3e45113be0154e2e6d489 authored by Wayne Xiong on 07 February 2018, 09:36:50 UTC
Fix build error
Tip revision: e9dc7c4
current_iteration.md
# CNTK Current Iteration

## Change profiler details output format to be chrome://tracing

## Enable per-node timing. Working example [here](../Examples/Image/Classification/MLP/Python/SimpleMNIST.py)
- per-node timing creates items in profiler details when profiler is enabled.
- usage in Python:
```
import cntk as C
C.debugging.debug.set_node_timing(True)
C.debugging.start_profiler() # optional
C.debugging.enable_profiler() # optional
#<trainer|evaluator|function> executions
<trainer|evaluator|function>.print_node_timing()
C.debugging.stop_profiler()
```
back to top