From c8457e4ad3f18bf982b9d22853c8fae72cb49585 Mon Sep 17 00:00:00 2001 From: Adel Ejjeh <aejjeh@illinois.edu> Date: Mon, 18 Apr 2022 08:04:58 -0500 Subject: [PATCH] [docs] Fixed incorrect underlines --- hpvm/docs/developerdocs/specifications/hetero-c.rst | 2 +- hpvm/docs/how_to_guides/writing-heteroc-program.rst | 2 +- hpvm/docs/tutorials/1-heterocpp.rst | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hpvm/docs/developerdocs/specifications/hetero-c.rst b/hpvm/docs/developerdocs/specifications/hetero-c.rst index 7cbfe63396..c552dd697a 100644 --- a/hpvm/docs/developerdocs/specifications/hetero-c.rst +++ b/hpvm/docs/developerdocs/specifications/hetero-c.rst @@ -1,5 +1,5 @@ Hetero-C++ Language Specification -=============================== +================================= A Hetero-C++ program consists of Parallel Sections, Parallel Tasks, and Parallel Loops. Parallel Sections correspond to Internal Nodes in the diff --git a/hpvm/docs/how_to_guides/writing-heteroc-program.rst b/hpvm/docs/how_to_guides/writing-heteroc-program.rst index d43b990d26..3e12105f82 100644 --- a/hpvm/docs/how_to_guides/writing-heteroc-program.rst +++ b/hpvm/docs/how_to_guides/writing-heteroc-program.rst @@ -1,5 +1,5 @@ Writing a Hetero-C++ Program -========================== +============================ The following document describes various programming patterns supported by the ``Hetero-C++`` api. Please refer to the `Hetero-C++ Language diff --git a/hpvm/docs/tutorials/1-heterocpp.rst b/hpvm/docs/tutorials/1-heterocpp.rst index fd97d5b3fc..099f6f0672 100644 --- a/hpvm/docs/tutorials/1-heterocpp.rst +++ b/hpvm/docs/tutorials/1-heterocpp.rst @@ -8,7 +8,7 @@ a parallel dialect of C/C++ which describes hierarchical Task-level and Data-lev and compiles through HPVM. Writing a Program in Hetero-C++ -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ We start with a scalar implementation of Matrix Multiplication written in ``C++``. @@ -150,7 +150,7 @@ The `__hetero_launch` call generates the host code to prepare the arguments to b as well as generates HPVM Runtime method calls for managing memory between compute devices. Compiling the Program from Hetero-C++ to HPVM-C -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ To compile the above program, we first generate the LLVM IR Bitcode for the C++ file, using the following command: -- GitLab