Skip to content
Snippets Groups Projects
Commit 7bd9384c authored by kotsifa2's avatar kotsifa2
Browse files

Minor edits to documentation

parent 80294e87
No related branches found
No related tags found
No related merge requests found
......@@ -39,13 +39,13 @@ In an HPVM program, the host code is responsible for setting up, initiating the
- **Initialization and Cleanup**:
All HPVM operations must be enclosed by the HPVM initialization and cleanup. These operations perform initialization and cleanup of runtime constructs that provide the runtime support for HPVM.
- **Track Memory**:
Memory objects that are passed to dataflow graphs need to be managed by the HPVM runtime. The HPVM runtime includes a memory tracker for recording the location of HPVM-managed memory objects. Track memory starts tracking specified memory object.
Memory objects that are passed to dataflow graphs need to be managed by the HPVM runtime. The HPVM runtime includes a memory tracker for recording the location, or tracking, of HPVM-managed memory objects. Track memory starts tracking specified memory object.
- **Untrack Memory**:
Stop tracking specified memory object.
- **Request Memory**:
If the specified memory object is not present in host memory, copy it to host memory.
- **Launch**:
The host code initiates execution of specified DFG, either streaming or non streaming, and passes initial data. All data for one graph execution must be provided.
The host code initiates execution of specified DFG, either streaming or non streaming, and provides initial data. All data for one graph execution must be provided.
- **Wait**:
The host code blocks for completion of specified DFG.
- **Push**:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment