aboutsummaryrefslogtreecommitdiff
path: root/chapters/pseudocode.adoc
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2021-08-12 11:01:14 -0700
committerEric Kunze <eric.kunze@arm.com>2022-06-01 17:29:37 -0700
commit44a13479195a591b436d28efada8953b3cff36ba (patch)
tree99536c957a76ed022a1f0f98af84b2784643487a /chapters/pseudocode.adoc
parent7e4148c05a9b7533beb3bc0a5730b4f783e7d87a (diff)
downloadspecification-44a13479195a591b436d28efada8953b3cff36ba.tar.gz
Add FFT operators to MI/MT profiles
Adds FFT2D for complex->complex FFT Adds RFFT2D for real->complex FFT Change-Id: Id50f96b8f66f17c3020767c002f0c1f41a76d62e Signed-off-by: Eric Kunze <eric.kunze@arm.com>
Diffstat (limited to 'chapters/pseudocode.adoc')
-rw-r--r--chapters/pseudocode.adoc12
1 files changed, 12 insertions, 0 deletions
diff --git a/chapters/pseudocode.adoc b/chapters/pseudocode.adoc
index d22d180..993c6e7 100644
--- a/chapters/pseudocode.adoc
+++ b/chapters/pseudocode.adoc
@@ -212,4 +212,16 @@ int32_t tensor_size(int32_t input[]) {
}
return size;
}
+
+float_t pi()
+ returns value of pi
+
+float_t sin(angle)
+ return sine of angle given in radians
+
+float_t cos(angle)
+ return cosine of angle given in radians
+
+bool power_of_two(int32_t value)
+ return true if value is a power of two, false otherwise
----