aboutsummaryrefslogtreecommitdiff
path: root/chapters/ewise_binary.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'chapters/ewise_binary.adoc')
-rw-r--r--chapters/ewise_binary.adoc34
1 files changed, 0 insertions, 34 deletions
diff --git a/chapters/ewise_binary.adoc b/chapters/ewise_binary.adoc
index bf16469..5c34249 100644
--- a/chapters/ewise_binary.adoc
+++ b/chapters/ewise_binary.adoc
@@ -16,8 +16,6 @@ Axis of size 1 will be broadcast, as necessary. Rank of input tensors must match
include::{generated}/operators/ADD.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -37,8 +35,6 @@ Axis of size 1 will be broadcast, as necessary. Rank of input tensors must match
include::{generated}/operators/ARITHMETIC_RIGHT_SHIFT.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -68,8 +64,6 @@ Axis of size 1 will be broadcast as necessary. Rank of input tensors must match.
include::{generated}/operators/BITWISE_AND.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -89,8 +83,6 @@ Axis of size 1 will be broadcast as necessary. Rank of input tensors must match.
include::{generated}/operators/BITWISE_OR.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -110,8 +102,6 @@ Axis of size 1 will be broadcast as necessary. Rank of input tensors must match.
include::{generated}/operators/BITWISE_XOR.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -134,8 +124,6 @@ Quantized integer divide should use TABLE (for 1/x) and MUL.
include::{generated}/operators/INTDIV.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -159,8 +147,6 @@ Axis of size 1 will be broadcast, as necessary. Rank of input tensors must match
include::{generated}/operators/LOGICAL_AND.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -180,8 +166,6 @@ Axis of size 1 will be broadcast, as necessary. Rank of input tensors must match
include::{generated}/operators/LOGICAL_LEFT_SHIFT.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -202,8 +186,6 @@ Axis of size 1 will be broadcast, as necessary. Rank of input tensors must match
include::{generated}/operators/LOGICAL_RIGHT_SHIFT.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -224,8 +206,6 @@ Axis of size 1 will be broadcast as necessary. Rank of input tensors must match.
include::{generated}/operators/LOGICAL_OR.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -245,8 +225,6 @@ Axis of size 1 will be broadcast as necessary. Rank of input tensors must match.
include::{generated}/operators/LOGICAL_XOR.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -266,8 +244,6 @@ Axis of size 1 will be broadcast, as necessary. Rank of input tensors must match
include::{generated}/operators/MAXIMUM.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -287,8 +263,6 @@ Axis of size 1 will be broadcast, as necessary. Rank of input tensors must match
include::{generated}/operators/MINIMUM.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -308,8 +282,6 @@ Axis of size 1 will be broadcast, as necessary. Rank of input tensors must match
include::{generated}/operators/MUL.adoc[]
-*Operation Function:*
-
[source,c++]
----
ERROR_IF(in_t != int32_t && shift > 0);
@@ -339,8 +311,6 @@ Axis of size 1 will be broadcast, as necessary. Rank of input tensors must match
include::{generated}/operators/POW.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -360,8 +330,6 @@ Axis of size 1 will be broadcast as necessary. Rank of input tensors must match.
include::{generated}/operators/SUB.adoc[]
-*Operation Function:*
-
[source,c++]
----
for_each(index in shape) {
@@ -392,8 +360,6 @@ An int16_t to int16_t table lookup can be constructed in TOSA as follows:
include::{generated}/operators/TABLE.adoc[]
-*Operation Function:*
-
[source,c++]
----
REQUIRE(length(table) == TABLE_SIZE);