From 8a1d14fa2a3b20239a1c7bf38548f3c74ff8bde9 Mon Sep 17 00:00:00 2001 From: kotsifa2 <kotsifa2@illinois.edu> Date: Thu, 23 Jan 2020 17:05:00 -0600 Subject: [PATCH] Fix mistake in createNode. --- hpvm/docs/hpvm-specification.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hpvm/docs/hpvm-specification.md b/hpvm/docs/hpvm-specification.md index a4bcb4a73b..04643501e9 100644 --- a/hpvm/docs/hpvm-specification.md +++ b/hpvm/docs/hpvm-specification.md @@ -71,7 +71,7 @@ The intrinsics for describing graphs can only be used by internal nodes. Also, i ```i8* llvm.hpvm.createNode(i8* F)``` -Create a static dataflow node with no dynamic instances executing node function ```F```. Return a handle to the created node. +Create a static dataflow node with one dynamic instances executing node function ```F```. Return a handle to the created node. ```i8* llvm.hpvm.createNode1D(i8* F, i64 n1)``` Create a static dataflow node with ```n1``` dynamic instances executing node function ```F```. Return a handle to the created node. -- GitLab