コード例 #1
0
  def _run_info_handler(self, args, screen_info=None):
    output = debugger_cli_common.RichTextLines([])

    if self._run_call_count == 1:
      output.extend(cli_shared.get_tfdbg_logo())
    output.extend(self._run_info)

    if (not self._is_run_start and
        debugger_cli_common.MAIN_MENU_KEY in output.annotations):
      menu = output.annotations[debugger_cli_common.MAIN_MENU_KEY]
      if "list_tensors" not in menu.captions():
        menu.insert(
            0, debugger_cli_common.MenuItem("list_tensors", "list_tensors"))

    return output
コード例 #2
0
  def _run_info_handler(self, args, screen_info=None):
    output = debugger_cli_common.RichTextLines([])

    if self._run_call_count == 1:
      output.extend(cli_shared.get_tfdbg_logo())
    output.extend(self._run_info)

    if (not self._is_run_start and
        debugger_cli_common.MAIN_MENU_KEY in output.annotations):
      menu = output.annotations[debugger_cli_common.MAIN_MENU_KEY]
      if "list_tensors" not in menu.captions():
        menu.insert(
            0, debugger_cli_common.MenuItem("list_tensors", "list_tensors"))

    return output
コード例 #3
0
  def _prep_cli_for_run_start(self):
    """Prepare (but not launch) the CLI for run-start."""

    self._run_cli = curses_ui.CursesUI()

    help_intro = debugger_cli_common.RichTextLines([])
    if self._run_call_count == 1:
      # Show logo at the onset of the first run.
      help_intro.extend(cli_shared.get_tfdbg_logo())
    help_intro.extend(debugger_cli_common.RichTextLines("Upcoming run:"))
    help_intro.extend(self._run_info)

    self._run_cli.set_help_intro(help_intro)

    # Create initial screen output detailing the run.
    self._title = "run-start: " + self._run_description
    self._init_command = "help"
    self._title_color = "blue_on_white"
コード例 #4
0
    def testRunInfoOutputAtRunEndIsCorrect(self):
        wrapped_sess = LocalCLIDebuggerWrapperSessionForTest(
            [["run"], ["run"], ["run"]], self.sess, dump_root=self._tmp_dir)

        wrapped_sess.run(self.inc_v)
        run_info_output = wrapped_sess._run_info_handler([])

        tfdbg_logo = cli_shared.get_tfdbg_logo()

        # The run_info output in the first run() call should contain the tfdbg logo.
        self.assertEqual(tfdbg_logo.lines,
                         run_info_output.lines[:len(tfdbg_logo.lines)])
        menu = run_info_output.annotations[debugger_cli_common.MAIN_MENU_KEY]
        self.assertIn("list_tensors", menu.captions())

        wrapped_sess.run(self.inc_v)
        run_info_output = wrapped_sess._run_info_handler([])

        # The run_info output in the second run() call should NOT contain the logo.
        self.assertNotEqual(tfdbg_logo.lines,
                            run_info_output.lines[:len(tfdbg_logo.lines)])
        menu = run_info_output.annotations[debugger_cli_common.MAIN_MENU_KEY]
        self.assertIn("list_tensors", menu.captions())
コード例 #5
0
  def testRunInfoOutputAtRunEndIsCorrect(self):
    wrapped_sess = LocalCLIDebuggerWrapperSessionForTest(
        [["run"], ["run"], ["run"]], self.sess, dump_root=self._tmp_dir)

    wrapped_sess.run(self.inc_v)
    run_info_output = wrapped_sess._run_info_handler([])

    tfdbg_logo = cli_shared.get_tfdbg_logo()

    # The run_info output in the first run() call should contain the tfdbg logo.
    self.assertEqual(tfdbg_logo.lines,
                     run_info_output.lines[:len(tfdbg_logo.lines)])
    menu = run_info_output.annotations[debugger_cli_common.MAIN_MENU_KEY]
    self.assertIn("list_tensors", menu.captions())

    wrapped_sess.run(self.inc_v)
    run_info_output = wrapped_sess._run_info_handler([])

    # The run_info output in the second run() call should NOT contain the logo.
    self.assertNotEqual(tfdbg_logo.lines,
                        run_info_output.lines[:len(tfdbg_logo.lines)])
    menu = run_info_output.annotations[debugger_cli_common.MAIN_MENU_KEY]
    self.assertIn("list_tensors", menu.captions())