aboutsummaryrefslogtreecommitdiff
path: root/chapters/data_nodes.adoc
diff options
context:
space:
mode:
authorKevin Petit <kevin.petit@arm.com>2024-01-25 14:53:20 +0000
committerEric Kunze <eric.kunze@arm.com>2024-01-28 15:59:46 +0000
commit7e5d187c612fcc715ea3f7f0c900eb13af75a660 (patch)
treea933798aa65c5bdc580f51538ffa28563cf69ebf /chapters/data_nodes.adoc
parent608588390a90e6e337a592b62cf811d1ea8ea0fd (diff)
downloadspecification-7e5d187c612fcc715ea3f7f0c900eb13af75a660.tar.gz
Add missing pseudocode for CONST, CUSTOM, ERF, and IDENTITY operators
Signed-off-by: Kevin Petit <kevin.petit@arm.com> Change-Id: Icb824233e5be84ac0eb693459b65441e9ae6c545
Diffstat (limited to 'chapters/data_nodes.adoc')
-rw-r--r--chapters/data_nodes.adoc9
1 files changed, 9 insertions, 0 deletions
diff --git a/chapters/data_nodes.adoc b/chapters/data_nodes.adoc
index 65e6b75..f0fc149 100644
--- a/chapters/data_nodes.adoc
+++ b/chapters/data_nodes.adoc
@@ -15,9 +15,18 @@ A node containing constant data for use as the input to an operation. May hold d
include::{generated}/operators/CONST.adoc[]
+[source,c++]
+----
+include::{pseudocode}/operators/CONST.tosac[lines=10..-1]
+----
+
==== IDENTITY
Returns a tensor with the same shape, type, and contents as the input.
include::{generated}/operators/IDENTITY.adoc[]
+[source,c++]
+----
+include::{pseudocode}/operators/IDENTITY.tosac[lines=10..-1]
+----