From 0808d63e4db076fbbd02e806272ae4ccae6ed72c Mon Sep 17 00:00:00 2001 From: Kevin Petit Date: Wed, 24 Jan 2024 17:22:47 +0000 Subject: pseudocode: replace all uses of FP64 and double types with fp64_t Signed-off-by: Kevin Petit Change-Id: Ieb895e834d1f3b512a666b062b963b08f82c8a24 --- pseudocode/operators/tables/ERF.tosac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pseudocode/operators/tables/ERF.tosac b/pseudocode/operators/tables/ERF.tosac index bf94349..be762de 100644 --- a/pseudocode/operators/tables/ERF.tosac +++ b/pseudocode/operators/tables/ERF.tosac @@ -8,7 +8,7 @@ // by a licensing agreement from ARM Limited. int16_t erf_reference(int16_t x) { // input x range is -256 to + 256 inclusive - F64 v = static_cast(x) / static_cast(64); + fp64_t v = static_cast(x) / static_cast(64); v = erf(v); return round_to_nearest_int(32768.0 * v); } -- cgit v1.2.1