You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by du...@apache.org on 2015/12/02 02:05:23 UTC

[45/47] incubator-systemml git commit: [SYSML-359] Link to Debugger Guide

[SYSML-359] Link to Debugger Guide


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/bf8d44eb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/bf8d44eb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/bf8d44eb

Branch: refs/heads/gh-pages
Commit: bf8d44eb7fb5eac0197db990278bc25130e7949b
Parents: d80220f
Author: Deron Eriksson <de...@us.ibm.com>
Authored: Tue Nov 3 10:01:57 2015 -0300
Committer: Luciano Resende <lr...@apache.org>
Committed: Tue Nov 3 10:01:57 2015 -0300

----------------------------------------------------------------------
 _layouts/global.html |  1 +
 debugger-guide.md    | 27 +++++++++++++--------------
 index.md             |  1 +
 3 files changed, 15 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/bf8d44eb/_layouts/global.html
----------------------------------------------------------------------
diff --git a/_layouts/global.html b/_layouts/global.html
index 06d8f17..a075461 100644
--- a/_layouts/global.html
+++ b/_layouts/global.html
@@ -38,6 +38,7 @@
                                 <li><a href="quick-start-guide.html">Quick Start Guide</a></li>
                                 <li><a href="dml-and-pydml-programming-guide.html">DML and PyDML Programming Guide</a></li>
                                 <li><a href="mlcontext-programming-guide.html">MLContext Programming Guide</a></li>
+                                <li><a href="debugger-guide.html">Debugger Guide</a></li>
                                 <li><a href="algorithms-reference.html">Algorithms Reference</a></li>
                                 <li><a href="dml-language-reference.html">DML Language Reference</a></li>
                                 <li class="divider"></li>

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/bf8d44eb/debugger-guide.md
----------------------------------------------------------------------
diff --git a/debugger-guide.md b/debugger-guide.md
index f343a20..c7067df 100644
--- a/debugger-guide.md
+++ b/debugger-guide.md
@@ -1,12 +1,11 @@
 ---
 layout: global
 title: SystemML Debugger Guide
-displayTitle: SystemML Debugger Guide
-displayTitle: <a href="debugger-guide.html">SystemML Debugger Guide</a>
+description: SystemML Debugger Guide
 ---
 
 
-# SystemML Debugger
+## Overview
 
 SystemML supports DML script-level debugging through a command line interface.  The SystemML debugger provides functionality typically found in a debugging environment like setting breakpoints, controlling program execution, and inspecting variables.  To run a script in debug mode, specify the '-debug' option as shown in below example.
 
@@ -22,17 +21,17 @@ The following sections describe each command along with example usage.
   * [Quit](#quit)
   * [List](#list)
   * [Step](#step)
-  * [Break](#break)
+  * [Break](#break)
   * [Delete](#delete)
   * [Info break](#info-break)
-  * [Continue](#continue)
-  * [Run](#run)
-  * [Whatis](#whatis)
-  * [Print](#print)
-  * [Set](#set)
-  * [Info frame](#info-frame)
-  * [List instruction](#list-instruction)
-  * [Step instruction](#step-instruction)
+  * [Continue](#continue)
+  * [Run](#run)
+  * [Whatis](#whatis)
+  * [Print](#print)
+  * [Set](#set)
+  * [Info frame](#info-frame)
+  * [List instruction](#list-instruction)
+  * [Step instruction](#step-instruction)
 
 
 
@@ -237,7 +236,7 @@ Note the run command is not valid if the runtime has already been started.  In t
     (SystemMLdb) r
     Runtime has already started. Try "s" to go to next line, or "c" to continue running your DML script.
     (SystemMLdb) 
-
+
 
 ## Debugger Commands for inspecting or modifying script variables
 
@@ -372,7 +371,7 @@ So if our test.xml script was executed up to line 4, then the following frame in
     (SystemMLdb) 
 
 Note only variables that are in scope are included (e.g., the variable C is not part of the frame since not yet in scope).
-
+
 
 ## Advanced Debugger Commands
 

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/bf8d44eb/index.md
----------------------------------------------------------------------
diff --git a/index.md b/index.md
index 21af2b0..a363e5c 100644
--- a/index.md
+++ b/index.md
@@ -18,6 +18,7 @@ For more information about SystemML, please consult the following references:
 * [Quick Start Guide](quick-start-guide.html)
 * [DML and PyDML Programming Guide](dml-and-pydml-programming-guide.html)
 * [MLContext Programming Guide](mlcontext-programming-guide.html)
+* [Debugger Guide](debugger-guide.html)
 * [Algorithms Reference](algorithms-reference.html)
 * [DML (R-like Declarative Machine Learning) Language Reference](dml-language-reference.html)
 * PyDML (Python-Like Declarative Machine Learning) Language Reference - **Coming Soon**