Improved performance of bit distance functions - #519

Co-authored-by: Nathan Bossart <nathan@postgresql.org>
Co-authored-by: "Jonathan S. Katz" <jkatz@users.noreply.github.com>
This commit is contained in:
Andrew Kane
2024-04-18 13:45:00 -07:00
parent 0b938f8328
commit fb3c964ac2
8 changed files with 289 additions and 27 deletions

View File

@@ -2,6 +2,7 @@
#include <math.h>
#include "bitutils.h"
#include "bitvector.h"
#include "catalog/pg_type.h"
#include "common/shortest_dec.h"
@@ -56,6 +57,7 @@ PGDLLEXPORT void _PG_init(void);
void
_PG_init(void)
{
BitvecInit();
HalfvecInit();
HnswInit();
IvfflatInit();