aboutsummaryrefslogtreecommitdiff
path: root/chapters/reduction.adoc
blob: e3692de22fb228d9158384505779081330c67d04 (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
//
// 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.

=== Reduction Operators

==== REDUCE_ALL

Reduce a tensor along the given axis with a logical AND operation

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

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

==== REDUCE_ANY

Reduce a tensor along the given axis with a logical OR operation

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

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

==== REDUCE_MAX

Reduce a tensor along the given axis with a maximum operation

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

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

==== REDUCE_MIN

Reduce a tensor along the given axis with a minimum operation

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

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

==== REDUCE_PRODUCT

Reduce a tensor along the given axis by computing the product of the axis.

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

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

==== REDUCE_SUM

Reduce a tensor along the given axis by computing the sum of the axis.

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

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