aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2022-06-02 08:30:18 -0700
committerEric Kunze <eric.kunze@arm.com>2022-06-02 08:30:18 -0700
commit0738025d386e0aa0e274ded20afdf000b22a1635 (patch)
treea94b0d7477a51a6e92dac1683d7bee0fc08846fc
parent44a13479195a591b436d28efada8953b3cff36ba (diff)
downloadspecification-0738025d386e0aa0e274ded20afdf000b22a1635.tar.gz
Make the use of inverse in FFT2D definition consistent
The captions for the images used 'direction', instead of 'inverse' which is the attribute name. Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: I4d8ab9642288efb984d03b7862068e09334ce8f6
-rw-r--r--chapters/tensor_ops.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chapters/tensor_ops.adoc b/chapters/tensor_ops.adoc
index b3f6f5a..bd5ffde 100644
--- a/chapters/tensor_ops.adoc
+++ b/chapters/tensor_ops.adoc
@@ -342,12 +342,12 @@ No normalization is applied on either the forward or inverse versions of the ope
// output[h][w] = \sum_{m=0}^{H-1}\sum_{n=0}^{W-1}input[m][n] * \exp\left(-2\pi i\left(\frac{mh}{H} + \frac{nw}{W}\right)\right)
-.Calculation for the forward FFT2D calculation (direction=false)
+.Calculation for the forward FFT2D calculation (inverse=false)
image::forward_fft2d.svg["forward FFT definition", align="center"]
// output[h][w] = \sum_{m=0}^{H-1}\sum_{n=0}^{W-1}input[m][n] * \exp\left(2\pi i\left(\frac{mh}{H} + \frac{nw}{W}\right)\right)
-.Calculation for the inverse FFT2D calculation (direction=true)
+.Calculation for the inverse FFT2D calculation (inverse=true)
image::inverse_fft2d.svg["inverse FFT definition", align="center"]
*Arguments:*