aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2021-09-16 14:32:46 -0700
committerEric Kunze <eric.kunze@arm.com>2021-09-27 15:06:13 -0700
commitd921624f8c2918b534575e3031af83f24c2a2ea0 (patch)
treefa567e11ad33a1cb276b15b7bbf1a2e1db4c2c12
parentb37e7fb865744536b708c8baa49b6415eab07b04 (diff)
downloadspecification-d921624f8c2918b534575e3031af83f24c2a2ea0.tar.gz
Change TABLE operator table to be an attribute for BI/MI
Use cases for BI/MI profiles show that the table argument for the TABLE operator will be known at compile time. Make it an attribute in that case. If a dynamic table is needed, the GATHER op is available. Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: Icb54eaa443ed7896d5010c7a30af88b02c8a83ad
-rw-r--r--chapters/ewise_binary.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapters/ewise_binary.adoc b/chapters/ewise_binary.adoc
index 9265c47..99eb597 100644
--- a/chapters/ewise_binary.adoc
+++ b/chapters/ewise_binary.adoc
@@ -658,7 +658,7 @@ An int16_t to int16_t table lookup can be constructed in TOSA as follows:
|Argument|Type|Name|Shape|Description
|Input|in_t*|Input|shape|Input tensor
-|Input|table_t*|table|[TABLE_SIZE]|Lookup table tensor
+|Input (MT profile) Attribute (BI/MI profiles)|table_t*|table|[TABLE_SIZE]|Lookup table tensor
|Output|out_t*|output|shape|Output tensor
|===