-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Two fixes to debugger plugin (#1014)
* Two fixes to debugger plugin 1. In some cases, a node with other nodes whose name scopes are the nodes name will not have a normalized (i.e., base-expanded) node name in the graph visualizer. E.g., consider a graph with two nodes, "Reshape" and "Reshape/shape". The "Reshape" node will be named as simply "Reshape", instead of "Reshape/(Reshape)" in the graph visualizer. As such, assuming base expansion always happens will lead to problems focusing on graph nodes through clicking nodes in the Node List or the Source Code View. This CL relaxes this assumption, which ensures the correct behavior. 2. When continuing to a given tensor, notify the user when a new Session Run has started. Also give user the option to stop continuation during the continue-to-tensor actions.
- Loading branch information
Showing
2 changed files
with
43 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters