aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEPhase.h
diff options
context:
space:
mode:
authorJohn Richardson <john.richardson@arm.com>2017-10-13 20:51:42 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit63e5041e6ea0f7fb57a1cc349f1325785fa800fa (patch)
treec83d31baf2cb7fb80ad127396fe6e55ad0959273 /arm_compute/runtime/NEON/functions/NEPhase.h
parent2d09993bed545f836cd624577c3ae749de6329b7 (diff)
downloadComputeLibrary-63e5041e6ea0f7fb57a1cc349f1325785fa800fa.tar.gz
COMPMID-576: Port Phase to new validation
Change-Id: Ice08031c997cf8162a4358deb059db857ede2382 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/93585 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEPhase.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEPhase.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEPhase.h b/arm_compute/runtime/NEON/functions/NEPhase.h
index 985ba84c4c..cd62cf98e8 100644
--- a/arm_compute/runtime/NEON/functions/NEPhase.h
+++ b/arm_compute/runtime/NEON/functions/NEPhase.h
@@ -36,11 +36,12 @@ class NEPhase : public INESimpleFunction
public:
/** Initialise the kernel's inputs, output.
*
- * @param[in] input1 First tensor input. Data type supported: S16.
- * @param[in] input2 Second tensor input. Data type supported: S16.
- * @param[out] output Output tensor. Data type supported: U8.
+ * @param[in] input1 First tensor input. Data type supported: S16.
+ * @param[in] input2 Second tensor input. Data type supported: S16.
+ * @param[out] output Output tensor. Data type supported: U8.
+ * @param[in] phase_type (Optional) Phase calculation type. Default: SIGNED.
*/
- void configure(const ITensor *input1, const ITensor *input2, ITensor *output);
+ void configure(const ITensor *input1, const ITensor *input2, ITensor *output, PhaseType phase_type = PhaseType::SIGNED);
};
}
#endif /*__ARM_COMPUTE_NEPHASE_H__ */