-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvecdex.c
632 lines (545 loc) · 15.2 KB
/
vecdex.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
/*
* Copyright (C) 2023 Ronsor Labs. All rights reserved.
* This software is free software provided to you under the terms of the MIT
* license. For more information, see the included `LICENSE` file.
*
* VecDex: SQLite vector extensions.
*/
#include <math.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "vecdex.h"
#ifndef STATIC_VECDEX
#include <sqlite3ext.h>
SQLITE_EXTENSION_INIT1
#endif
#define SQLITE_PURE (SQLITE_INNOCUOUS | SQLITE_DETERMINISTIC)
#define SQLITE_PURE_UTF8 (SQLITE_PURE | SQLITE_UTF8)
#define VEC_ALLOC_INCR 64
#define VEC_TO_BUF_SIZE(n) ((n) * sizeof(float))
static const float* sqlite3_value_vector(sqlite3_value *value, int* dim) {
if (sqlite3_value_type(value) != SQLITE_BLOB) return NULL;
int size = sqlite3_value_bytes(value);
if ((size % sizeof(float)) != 0) {
return NULL;
}
*dim = size / sizeof(float);
return sqlite3_value_blob(value);
}
static int sqlite3_value_dim(sqlite3_value *value) {
if (sqlite3_value_type(value) != SQLITE_BLOB) return 0;
int dim;
if (sqlite3_value_vector(value, &dim) == NULL) {
return 0;
}
return dim;
}
#ifndef NDEBUG
/*
* Print vector data to stdout.
*/
static void vectorDebugPrint(const float* vec, int dim, int showFull) {
printf("[");
for (int i = 0; i < dim; i++) {
if (!showFull && dim > 128 && i > 16 && i < (dim - 16)) {
printf(", ...");
i = dim - 16 - 1;
continue;
}
printf("%s%g", i != 0 ? ", " : "", vec[i]);
}
printf("]\n");
}
/*
* Wrapper for vectorDebugPrint.
*/
static void vectorDebugFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 1) return;
const float *vec;
int dim;
if ((vec = sqlite3_value_vector(argv[0], &dim)) == NULL)
return;
vectorDebugPrint(vec, dim, 0);
}
#endif
/*
* Loosely "parse" JSON array into a vector.
*/
static float* vectorParseJson(const char* zJson, int jsonLen,
int* pVecDim, int getDimOnly) {
float* ret = NULL;
int len = 0, i = 0;
const char* top = zJson + (jsonLen != -1 ? jsonLen : 0xFFFFF);
while (zJson && *zJson && zJson < top) {
if (strchr(" \t\v\n\r[,]", *zJson)) {
zJson++;
continue;
}
if (strchr("NI-+0123456789.", *zJson)) {
if (!getDimOnly && len <= i) {
len += VEC_ALLOC_INCR;
ret = sqlite3_realloc(ret, VEC_TO_BUF_SIZE(len));
if (ret == NULL) {
goto failed;
}
}
char *next = NULL;
float value = strtof(zJson, &next);
if (next == zJson) {
goto failed;
}
if (!getDimOnly) {
ret[i] = value;
}
i++;
zJson = next;
continue;
}
failed:
i = -1;
sqlite3_free(ret);
ret = NULL;
break;
}
if (pVecDim) {
*pVecDim = i;
}
return ret;
}
/*
* Convert value to a vector, or return unchanged if it's already a vector.
*/
static void vectorFunc(sqlite3_context *ctx, int argc, sqlite3_value **argv) {
if (argc < 1) return;
if (argc > 1 || sqlite3_value_type(argv[0]) == SQLITE_FLOAT
|| sqlite3_value_type(argv[0]) == SQLITE_INTEGER) {
float* vec = sqlite3_malloc(VEC_TO_BUF_SIZE(argc));
if (!vec) {
sqlite3_result_error_code(ctx, SQLITE_NOMEM);
return;
}
for (int i = 0; i < argc; i++) {
int type = sqlite3_value_numeric_type(argv[i]);
if (type == SQLITE_INTEGER) {
vec[i] = (float)sqlite3_value_int(argv[i]);
} else if (type == SQLITE_FLOAT) {
vec[i] = (float)sqlite3_value_double(argv[i]);
} else {
free(vec);
sqlite3_result_null(ctx);
return;
}
}
sqlite3_result_blob(ctx, vec, VEC_TO_BUF_SIZE(argc), sqlite3_free);
return;
}
switch (sqlite3_value_type(argv[0])) {
case SQLITE_BLOB: {
int size = sqlite3_value_bytes(argv[0]);
if ((size % sizeof(float)) != 0) {
sqlite3_result_null(ctx);
return;
}
sqlite3_result_blob(ctx, sqlite3_value_blob(argv[0]), size,
SQLITE_TRANSIENT);
return;
}
case SQLITE_TEXT: {
int dim = 0;
float* data = vectorParseJson(sqlite3_value_text(argv[0]),
sqlite3_value_bytes(argv[0]),
&dim, 0);
if (!data) {
sqlite3_result_error_code(ctx, SQLITE_NOMEM);
return;
}
sqlite3_result_blob(ctx, data, dim * sizeof(float), sqlite3_free);
return;
}
}
sqlite3_result_null(ctx);
return;
}
/*
* Return a vector of the specified dimension containing all zeroes.
*/
static void vector0Func(sqlite3_context *ctx, int argc, sqlite3_value **argv) {
if (argc < 1) return;
sqlite3_result_zeroblob(ctx, sqlite3_value_int(argv[0]) * sizeof(float));
return;
}
/*
* Return the vector as a JSON string.
*/
static void vectorToJsonFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 1) return;
const float *vec;
int dim;
if ((vec = sqlite3_value_vector(argv[0], &dim)) == NULL) {
sqlite3_result_null(ctx);
return;
}
sqlite3_str* str = sqlite3_str_new(sqlite3_context_db_handle(ctx));
if (str == NULL) {
sqlite3_result_null(ctx);
return;
}
sqlite3_str_appendchar(str, 1, '[');
for (int i = 0; i < dim; i++) {
if (sqlite3_str_errcode(str) != SQLITE_OK) {
sqlite3_result_error_code(ctx, sqlite3_str_errcode(str));
return;
}
sqlite3_str_appendf(str, "%s%g", i != 0 ? "," : "", vec[i]);
}
sqlite3_str_appendchar(str, 1, ']');
if (sqlite3_str_errcode(str) != SQLITE_OK) {
sqlite3_result_error_code(ctx, sqlite3_str_errcode(str));
return;
}
sqlite3_result_text(ctx, sqlite3_str_value(str), sqlite3_str_length(str),
SQLITE_TRANSIENT);
sqlite3_str_finish(str);
return;
}
/*
* Compare two vectors.
*/
static void vectorCompareFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 2) return;
const float *vecA, *vecB;
int dimA, dimB;
if ((vecA = sqlite3_value_vector(argv[0], &dimA)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if ((vecB = sqlite3_value_vector(argv[1], &dimB)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if (dimA != dimB) {
sqlite3_result_null(ctx);
return;
}
for (int i = 0; i < dimA; i++) {
if (vecA[i] < vecB[i]) {
sqlite3_result_int(ctx, -1);
return;
} else if (vecA[i] > vecB[i]) {
sqlite3_result_int(ctx, 1);
return;
}
}
sqlite3_result_int(ctx, 0);
return;
}
/*
* Calculate cosine similarity of two vectors.
*/
static void vectorCosimFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 2) return;
const float *vecA, *vecB;
int dimA, dimB;
if ((vecA = sqlite3_value_vector(argv[0], &dimA)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if ((vecB = sqlite3_value_vector(argv[1], &dimB)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if (dimA != dimB) {
sqlite3_result_null(ctx);
return;
}
double dotprod = 0.0, normA = 0.0, normB = 0.0;
for (int i = 0; i < dimA; i++) {
dotprod += vecA[i] * vecB[i];
normA += vecA[i] * vecA[i];
normB += vecB[i] * vecB[i];
}
sqlite3_result_double(ctx, dotprod / sqrt(normA * normB));
return;
}
/*
* Calculate L2 distance of two vectors.
*/
static void vectorDistFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 2) return;
const float *vecA, *vecB;
int dimA, dimB;
if ((vecA = sqlite3_value_vector(argv[0], &dimA)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if ((vecB = sqlite3_value_vector(argv[1], &dimB)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if (dimA != dimB) {
sqlite3_result_null(ctx);
return;
}
double distance = 0.0, diff = 0.0;
for (int i = 0; i < dimA; i++) {
diff = vecA[i] - vecB[i];
distance += diff * diff;
}
sqlite3_result_double(ctx, sqrt(distance));
return;
}
/*
* Get dimensions of a vector.
*/
static void vectorDimFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 1) return;
int dim;
if (sqlite3_value_vector(argv[0], &dim) == NULL) {
sqlite3_result_null(ctx);
return;
}
sqlite3_result_int(ctx, dim);
return;
}
/*
* Get average of a vector.
*/
static void vectorAvgFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 1) return;
const float* vec;
int dim;
if ((vec = sqlite3_value_vector(argv[0], &dim)) == NULL) {
sqlite3_result_null(ctx);
return;
}
double final = 0.0;
for (int i = 0; i < dim; i++) {
final += vec[i];
}
final /= dim;
sqlite3_result_double(ctx, final);
return;
}
/*
* Get L2 norm of a vector.
*/
static void vectorNormFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 1) return;
const float* vec;
int dim;
if ((vec = sqlite3_value_vector(argv[0], &dim)) == NULL) {
sqlite3_result_null(ctx);
return;
}
double final = 0.0;
for (int i = 0; i < dim; i++) {
final += vec[i] * vec[i];
}
sqlite3_result_double(ctx, sqrt(final));
return;
}
/*
* "Crush" vector into a single integer value.
*
* The vector is first quantized into a set of binary values,
* then these values are summed.
*/
static void vectorCrushFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 1) {
sqlite3_result_null(ctx);
return;
}
double threshold = 0.5;
if (argc >= 2) {
threshold = sqlite3_value_double(argv[1]);
}
int invert = 0;
if (argc >= 3) {
invert = !!sqlite3_value_int(argv[2]);
}
const float* vec;
int dim;
if ((vec = sqlite3_value_vector(argv[0], &dim)) == NULL) {
sqlite3_result_null(ctx);
return;
}
sqlite3_int64 crushed = 0;
for (int i = 0; i < dim; i++) {
int bit = vec[i] >= threshold ? 1 : 0;
crushed += invert ? !bit : bit;
}
sqlite3_result_int64(ctx, crushed);
return;
}
/*
* Add two vectors.
*/
static void vectorAddFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 2) return;
const float *vecA, *vecB;
int dimA, dimB;
if ((vecA = sqlite3_value_vector(argv[0], &dimA)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if ((vecB = sqlite3_value_vector(argv[1], &dimB)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if (dimA != dimB) {
sqlite3_result_null(ctx);
return;
}
float* vecC = sqlite3_malloc(VEC_TO_BUF_SIZE(dimA));
if (!vecC) {
sqlite3_result_error_code(ctx, SQLITE_NOMEM);
return;
}
for (int i = 0; i < dimA; i++) {
vecC[i] = vecA[i] + vecB[i];
}
sqlite3_result_blob(ctx, vecC, VEC_TO_BUF_SIZE(dimA), sqlite3_free);
return;
}
/*
* Subtract two vectors.
*/
static void vectorSubFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 2) return;
const float *vecA, *vecB;
int dimA, dimB;
if ((vecA = sqlite3_value_vector(argv[0], &dimA)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if ((vecB = sqlite3_value_vector(argv[1], &dimB)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if (dimA != dimB) {
sqlite3_result_null(ctx);
return;
}
float* vecC = sqlite3_malloc(VEC_TO_BUF_SIZE(dimA));
if (!vecC) {
sqlite3_result_error_code(ctx, SQLITE_NOMEM);
return;
}
for (int i = 0; i < dimA; i++) {
vecC[i] = vecA[i] - vecB[i];
}
sqlite3_result_blob(ctx, vecC, VEC_TO_BUF_SIZE(dimA), sqlite3_free);
return;
}
/*
* Multiply two vectors.
*/
static void vectorMulFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 2) return;
const float *vecA, *vecB;
int dimA, dimB;
if ((vecA = sqlite3_value_vector(argv[0], &dimA)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if ((vecB = sqlite3_value_vector(argv[1], &dimB)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if (dimA != dimB) {
sqlite3_result_null(ctx);
return;
}
float* vecC = sqlite3_malloc(VEC_TO_BUF_SIZE(dimA));
if (!vecC) {
sqlite3_result_error_code(ctx, SQLITE_NOMEM);
return;
}
for (int i = 0; i < dimA; i++) {
vecC[i] = vecA[i] * vecB[i];
}
sqlite3_result_blob(ctx, vecC, VEC_TO_BUF_SIZE(dimA), sqlite3_free);
return;
}
/*
* Divide two vectors.
*/
static void vectorDivFunc(sqlite3_context *ctx,
int argc, sqlite3_value **argv) {
if (argc < 2) return;
const float *vecA, *vecB;
int dimA, dimB;
if ((vecA = sqlite3_value_vector(argv[0], &dimA)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if ((vecB = sqlite3_value_vector(argv[1], &dimB)) == NULL) {
sqlite3_result_null(ctx);
return;
} else if (dimA != dimB) {
sqlite3_result_null(ctx);
return;
}
float* vecC = sqlite3_malloc(VEC_TO_BUF_SIZE(dimA));
if (!vecC) {
sqlite3_result_error_code(ctx, SQLITE_NOMEM);
return;
}
for (int i = 0; i < dimA; i++) {
vecC[i] = vecA[i] / vecB[i];
}
sqlite3_result_blob(ctx, vecC, VEC_TO_BUF_SIZE(dimA), sqlite3_free);
return;
}
#if defined(_WIN32) && !defined(STATIC_VECDEX)
__declspec(dllexport)
#endif
int sqlite3_vecdex_init(sqlite3 *db, char **pzErrMsg,
#ifndef STATIC_VECDEX
const sqlite3_api_routines *pApi
#endif
) {
#ifndef STATIC_VECDEX
SQLITE_EXTENSION_INIT2(pApi);
#endif
int rc = SQLITE_OK;
static const struct {
const char* zFName;
int nArg;
int flags;
void* pAux;
void (*xFunc)(sqlite3_context*, int, sqlite3_value**);
} funcTbl[] = {
{ "vector", -1, SQLITE_PURE_UTF8, NULL, vectorFunc },
{ "vector0", 1, SQLITE_PURE_UTF8, NULL, vector0Func },
{ "vector_from_json", 1, SQLITE_PURE_UTF8, NULL, vectorFunc },
{ "vector_to_json", 1, SQLITE_PURE_UTF8, NULL, vectorToJsonFunc },
{ "vector_compare", 2, SQLITE_PURE_UTF8, NULL, vectorCompareFunc },
{ "vector_cosim", 2, SQLITE_PURE_UTF8, NULL, vectorCosimFunc },
{ "vector_dist", 2, SQLITE_PURE_UTF8, NULL, vectorDistFunc },
{ "vector_dim", 1, SQLITE_PURE_UTF8, NULL, vectorDimFunc },
{ "vector_avg", 1, SQLITE_PURE_UTF8, NULL, vectorAvgFunc },
{ "vector_norm", 1, SQLITE_PURE_UTF8, NULL, vectorNormFunc },
{ "vector_crush", -1, SQLITE_PURE_UTF8, NULL, vectorCrushFunc },
{ "vector_add", 2, SQLITE_PURE_UTF8, NULL, vectorAddFunc },
{ "vector_sub", 2, SQLITE_PURE_UTF8, NULL, vectorSubFunc },
{ "vector_mul", 2, SQLITE_PURE_UTF8, NULL, vectorMulFunc },
{ "vector_div", 2, SQLITE_PURE_UTF8, NULL, vectorDivFunc },
#ifndef NDEBUG
{ "vector_debug", 1, SQLITE_PURE_UTF8, NULL, vectorDebugFunc },
#endif
};
for (int i = 0; i < sizeof(funcTbl) / sizeof(*funcTbl); i++) {
if ((rc = sqlite3_create_function_v2(
db,
funcTbl[i].zFName, funcTbl[i].nArg, funcTbl[i].flags, funcTbl[i].pAux,
funcTbl[i].xFunc, NULL, NULL, NULL
)) != SQLITE_OK) {
*pzErrMsg = sqlite3_mprintf("%s: %s",
funcTbl[i].zFName, sqlite3_errmsg(db));
return rc;
}
}
return rc;
}