Files
pgvector/src/halfutils.h
2024-04-08 13:50:18 -07:00

12 lines
240 B
C

#ifndef HALFUTILS_H
#define HALFUTILS_H
#include "halfvec.h"
extern float (*HalfvecL2DistanceSquared) (int dim, half * ax, half * bx);
extern float (*HalfvecInnerProduct) (int dim, half * ax, half * bx);
void HalfvecInit(void);
#endif