aboutsummaryrefslogtreecommitdiff
path: root/tosa.xml
diff options
context:
space:
mode:
authorLuke Hutton <luke.hutton@arm.com>2023-01-09 10:41:33 +0000
committerLuke Hutton <luke.hutton@arm.com>2023-01-17 11:05:24 +0000
commit13ede1df912c7adc59535036103a2da640613bfe (patch)
tree6411db9eb1bbeff870df8e9dcd24701bf0b6bbf3 /tosa.xml
parenta269fd4c806ca0c08123a640132be02dbe86fa7c (diff)
downloadspecification-13ede1df912c7adc59535036103a2da640613bfe.tar.gz
RFFT2D: Adjust output height to be same as the input
The expected output shape of RFFT2d should be (N, H, W/2+1) as opposed to (N, H/2+1, W/2+1). Change-Id: I66d830f1ffa86417b57572b3cd904db0290cac42
Diffstat (limited to 'tosa.xml')
-rw-r--r--tosa.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tosa.xml b/tosa.xml
index f952e40..8963d7c 100644
--- a/tosa.xml
+++ b/tosa.xml
@@ -468,10 +468,10 @@
<levellimit value="H" limit="MAX_KERNEL"/>
<levellimit value="W" limit="MAX_KERNEL"/>
</argument>
- <argument category="output" name="output_real" type="in_out_t*" shape="[N,H/2 + 1,W/2 + 1]">
+ <argument category="output" name="output_real" type="in_out_t*" shape="[N,H,W/2 + 1]">
<description>Real part of the complex output</description>
</argument>
- <argument category="output" name="output_imag" type="in_out_t*" shape="[N,H/2 + 1,W/2 + 1]">
+ <argument category="output" name="output_imag" type="in_out_t*" shape="[N,H,W/2 + 1]">
<description>Imaginary part of the complex output.</description>
</argument>
</arguments>