File acc_q15_core.h¶
File List > acc_q15 > acc_q15_core.h
Go to the documentation of this file
#ifndef ACC_Q15_CORE_H
#define ACC_Q15_CORE_H
#include "clib_common.h"
#include "jm_perf.h"
#include "dp_state.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
int64_t acc;
} acc_q15_state_t;
acc_q15_state_t *acc_q15_create(int64_t acc);
void acc_q15_destroy(acc_q15_state_t *state);
void acc_q15_reset(acc_q15_state_t *state);
JM_FORCEINLINE JM_HOT void
acc_q15_step(acc_q15_state_t *state, int16_t x)
{
state->acc += (int64_t)x;
}
void acc_q15_steps(
acc_q15_state_t *state,
const int16_t *input,
size_t n);
int64_t acc_q15_get_acc(const acc_q15_state_t *state);
void acc_q15_set_acc(acc_q15_state_t *state, int64_t val);
int64_t acc_q15_get(acc_q15_state_t *state);
int64_t acc_q15_dump(acc_q15_state_t *state);
void acc_q15_madd(acc_q15_state_t *state, const int16_t *a, size_t a_len, const int16_t *b, size_t b_len);
/* ── Serializable state (standard bytes interface; see dp_state.h) ──────────
* Whole-struct POD snapshot (pointer-free); the running 64-bit accumulator resumes exactly into an
* identically-built instance. */
#define ACC_Q15_STATE_MAGIC DP_FOURCC ('A', 'C', '1', '5')
#define ACC_Q15_STATE_VERSION 1u
size_t acc_q15_state_bytes (const acc_q15_state_t *state);
void acc_q15_get_state (const acc_q15_state_t *state, void *blob);
int acc_q15_set_state (acc_q15_state_t *state, const void *blob);
#ifdef __cplusplus
}
#endif
#endif /* ACC_Q15_CORE_H */