mirror of
https://github.com/pgvector/pgvector.git
synced 2026-06-30 09:41:15 +08:00
12 lines
240 B
C
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
|