aboutsummaryrefslogtreecommitdiff
path: root/chapters/ewise_unary.adoc
blob: 3dd5bc455982cc2684a5c5aea5de00f93df3197a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
//
// This confidential and proprietary software may be used only as
// authorised by a licensing agreement from ARM Limited
// (C) COPYRIGHT 2020-2024 ARM Limited
// ALL RIGHTS RESERVED
// The entire notice above must be reproduced on all authorised
// copies and copies may only be made to the extent permitted
// by a licensing agreement from ARM Limited.

=== Elementwise Unary Operators

==== ABS

Elementwise absolute value operation

include::{generated}/operators/ABS.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|+infinity|+infinity|+0|+0|NaN
|===

[source,c++]
----
include::{pseudocode}/operators/ABS.tosac[lines=10..-1]
----

==== BITWISE_NOT

Elementwise bitwise NOT of input tensor.

include::{generated}/operators/BITWISE_NOT.adoc[]

[source,c++]
----
include::{pseudocode}/operators/BITWISE_NOT.tosac[lines=10..-1]
----

==== CEIL

Elementwise ceiling operation

include::{generated}/operators/CEIL.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|-infinity|+infinity|-0|+0|NaN
|===

[source,c++]
----
include::{pseudocode}/operators/CEIL.tosac[lines=10..-1]
----

==== CLZ

Elementwise count leading zeros operation

include::{generated}/operators/CLZ.adoc[]

[source,c++]
----
include::{pseudocode}/operators/CLZ.tosac[lines=10..-1]
----

==== COS

Elementwise cosine operation for values given in radians.

include::{generated}/operators/COS.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|NaN|NaN|+1|+1|NaN
|===

[source, c++]
----
include::{pseudocode}/operators/COS.tosac[lines=10..-1]
----

==== EXP

Elementwise e to the x operation

include::{generated}/operators/EXP.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|+0|+infinity|1|1|NaN
|===

[source,c++]
----
include::{pseudocode}/operators/EXP.tosac[lines=10..-1]
----

==== FLOOR

Elementwise floor operation

include::{generated}/operators/FLOOR.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|-infinity|+infinity|-0|+0|NaN
|===

[source,c++]
----
include::{pseudocode}/operators/FLOOR.tosac[lines=10..-1]
----

==== LOG

Elementwise natural logarithm operation

include::{generated}/operators/LOG.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|NaN|+infinity|-infinity|-infinity|NaN
|===

[source,c++]
----
include::{pseudocode}/operators/LOG.tosac[lines=10..-1]
----

==== LOGICAL_NOT

Elementwise logical NOT of input.

include::{generated}/operators/LOGICAL_NOT.adoc[]

[source,c++]
----
include::{pseudocode}/operators/LOGICAL_NOT.tosac[lines=10..-1]
----

==== NEGATE

Elementwise negation operation

include::{generated}/operators/NEGATE.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|+infinity|-infinity|+0|-0|NaN
|===

[source,c++]
----
include::{pseudocode}/operators/NEGATE.tosac[lines=10..-1]
----

==== RECIPROCAL

Elementwise reciprocal operation. For integer operation, a TABLE should be used with the appropriate ranges.

include::{generated}/operators/RECIPROCAL.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|-0|+0|-infinity|+infinity|NaN
|===

[source,c++]
----
include::{pseudocode}/operators/RECIPROCAL.tosac[lines=10..-1]
----

==== RSQRT

Elementwise reciprocal square root operation. For integer operation, a TABLE should be used with the appropriate ranges.

include::{generated}/operators/RSQRT.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|NaN|+0|-infinity|+infinity|NaN
|===

[source,c++]
----
include::{pseudocode}/operators/RSQRT.tosac[lines=10..-1]
----

==== SIN

Elementwise sine operation for values given in radians.

include::{generated}/operators/SIN.adoc[]

*Floating-point behavior:*
|===
|Input|-infinity|+infinity|-0|+0|NaN

|Output|NaN|NaN|-0|+0|NaN
|===

[source, c++]
----
include::{pseudocode}/operators/SIN.tosac[lines=10..-1]
----