From 25cfb6c3fe9c0426b673c0bc156d62c548f38852 Mon Sep 17 00:00:00 2001 From: Aaron Councilman <aaronjc4@illinois.edu> Date: Mon, 18 Apr 2022 09:34:37 -0500 Subject: [PATCH] Add optional name to Hetero-C++ marker signatures in specification --- hpvm/docs/developerdocs/specifications/hetero-c.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hpvm/docs/developerdocs/specifications/hetero-c.rst b/hpvm/docs/developerdocs/specifications/hetero-c.rst index c552dd697a..068abb6477 100644 --- a/hpvm/docs/developerdocs/specifications/hetero-c.rst +++ b/hpvm/docs/developerdocs/specifications/hetero-c.rst @@ -68,7 +68,7 @@ opaque handle in the first argument. Parallel Task API ----------------- -``void* __hetero_task_begin(unsigned ni ,..., unsigned no, ...)`` +``void* __hetero_task_begin(unsigned ni ,..., unsigned no, ..., ["name"])`` Defines the starting point for a Parallel Task with the input and output buffer pairs specified. Returns an opaque handle to the starting point @@ -95,7 +95,7 @@ in the first argument. Parallel Loop API ----------------- -``void __hetero_parallel_loop(unsigned num_loops ,unsigned ni ,..., unsigned no, ...)`` +``void __hetero_parallel_loop(unsigned num_loops ,unsigned ni ,..., unsigned no, ..., ["name"])`` Specifies that a loop can be parallelized by creating a N-Dimensional Node in the hetero DFG. The first argument ``num_loops`` specifies the -- GitLab