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

Typos and minor edits in hpvm spec

parent b694d583
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ Internal nodes only create the structure of the child graph, and cannot include ...@@ -12,7 +12,7 @@ Internal nodes only create the structure of the child graph, and cannot include
Leaf nodes contain code expressing actual computations. Leaf nodes may contain instructions to query the structure of the underlying DFG, and any non host side HPVM operation for synchronization and memory allocation. Leaf nodes contain code expressing actual computations. Leaf nodes may contain instructions to query the structure of the underlying DFG, and any non host side HPVM operation for synchronization and memory allocation.
Note that the graph is full interpreted at compile-time and cannot be modified at runtime except for the number of dynamic instances, which can be data dependent. Note that the graph is fully interpreted at compile-time and cannot be modified at runtime except for the number of dynamic instances, which can be data dependent.
## Dataflow Edge ## Dataflow Edge
...@@ -191,6 +191,8 @@ Pop and return data from streaming DFG with handle ```GraphID```. The return typ ...@@ -191,6 +191,8 @@ Pop and return data from streaming DFG with handle ```GraphID```. The return typ
## Implementation Limitations ## Implementation Limitations
Due to limitations of our current prototype implementation, the following restrictions are imposed: Due to limitations of our current prototype implementation, the following restrictions are imposed:
- In HPVM, a memory object is represented as a (pointer, size) pair that includes the address of memory object, and the size (in bytes) of the pointed-to object. Therefore, when an edge/bind carries a pointer, it must be followed by an i64 size value. - In HPVM, a memory object is represented as a (pointer, size) pair that includes the address of memory object, and the size (in bytes) of the pointed-to object. Therefore, when an edge/bind carries a pointer, it must be followed by an i64 size value.
- Pointers cannot be transferred between nodes using dataflow edges. Instead, they should be passed using the bind operation from the (common) parent of the source and sink nodes. - Pointers cannot be transferred between nodes using dataflow edges. Instead, they should be passed using the bind operation from the (common) parent of the source and sink nodes.
- Instantiation of dataflow nodes is supported in up to three dimensions. - Instantiation of dataflow nodes is supported in up to three dimensions.
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