blob: bcc2fa6fa9305a936ae6b6e25997a27c2c4ab4e5 [file] [log] [blame]
Szabolcs Nagyd9840982019-08-29 14:46:28 +01001/*
2 * Declarations for double-precision log(x) vector function.
3 *
4 * Copyright (c) 2019, Arm Limited.
5 * SPDX-License-Identifier: MIT
6 */
7
8#include "v_math.h"
Szabolcs Nagy1f3b1632019-11-06 19:41:30 +00009#if WANT_VMATH
Szabolcs Nagyd9840982019-08-29 14:46:28 +010010
11#define V_LOG_TABLE_BITS 7
12
13extern const struct v_log_data
14{
15 f64_t invc;
16 f64_t logc;
17} __v_log_data[1 << V_LOG_TABLE_BITS] HIDDEN;
Szabolcs Nagy1f3b1632019-11-06 19:41:30 +000018#endif