Skip to content

Commit

Permalink
Merge branch 'master' of github.com:stanford-ppl/spatial-doc
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfel1 committed Mar 3, 2018
2 parents 7d3a4cb + 82c42eb commit ccf3e7f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/site/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Spatial

For a brief introduction to Spatial and its purpose, see `this presentation <https://github.com/stanford-ppl/spatial-doc/tree/master/docs/site/slides/WhatIsSpatial.pdf>`_.

For a brief rundown of the language and its constructs, see `this presentation <https://github.com/stanford-ppl/spatial-doc/tree/master/docs/site/slides/Rundown.pdf>`_ and the :doc:`in-depth tutorials <tutorial/starting>` on this website.
For a brief rundown of the language and its constructs, see `these slides <https://github.com/stanford-ppl/spatial-doc/tree/master/docs/site/slides/Rundown.pdf>`_ and the :doc:`in-depth tutorials <tutorial/starting>` on this website.

.. image:: images/spatial_start.png

Expand Down
4 changes: 2 additions & 2 deletions docs/site/tutorial/nw.rst
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ Generally, an FSM is a hardware version of a while loop. It allows you to arbit
control structures and selectively execute code until some breaking state condition is reached.

Asserts, Breakpoints, and Sleep
---------------------
-------------------------------

There are sometimes cases where the app writer wants to escape the app early or pause the app for a period of time. In this
subsection we will explore how to implement the breakpoint/exit and sleep functions in Spatial.
Expand Down Expand Up @@ -405,4 +405,4 @@ Here is the final code for this version of NW::
println("Aligned A: " + seqA_aligned_string)
println("Aligned B: " + seqB_aligned_string)
}
}
}
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Spatial

For a brief introduction to Spatial and its purpose, see `this presentation <https://github.com/stanford-ppl/spatial-doc/tree/master/docs/site/slides/WhatIsSpatial.pdf>`_.

For a brief rundown of the language and its constructs, see `this presentation <https://github.com/stanford-ppl/spatial-doc/tree/master/docs/site/slides/Rundown.pdf>`_ and the :doc:`in-depth tutorials <tutorial/starting>` on this website.
For a brief rundown of the language and its constructs, see `these slides <https://github.com/stanford-ppl/spatial-doc/tree/master/docs/site/slides/Rundown.pdf>`_ and the :doc:`in-depth tutorials <tutorial/starting>` on this website.

.. image:: images/spatial_start.png

Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorial/nw.rst
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Generally, an FSM is a hardware version of a while loop. It allows you to arbit
control structures and selectively execute code until some breaking state condition is reached.

Asserts, Breakpoints, and Sleep
---------------------
-------------------------------

There are sometimes cases where the app writer wants to escape the app early or pause the app for a period of time. In this
subsection we will explore how to implement the breakpoint/exit and sleep functions in Spatial.
Expand Down
1 change: 1 addition & 0 deletions src/main/scala/processor/Preprocessor.scala
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ object Preprocessor {

Files.copy(Paths.get(origPath), Paths.get(path), StandardCopyOption.REPLACE_EXISTING)
}
Files.move(Paths.get(out + "/conf"), Paths.get(out + "/conf.py"))

var displ: Map[String, String] = Map.empty // Map from alias to display name
var paths: Map[String, String] = Map.empty // Map from type name to absolute path to filename (without .rst)
Expand Down

0 comments on commit ccf3e7f

Please sign in to comment.