mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-05-27 14:25:21 +02:00
fmt
This commit is contained in:
parent
330f021216
commit
f09f6a0215
1 changed files with 11 additions and 11 deletions
|
|
@ -15,7 +15,6 @@
|
|||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef SQLITE_CORE
|
||||
#include "sqlite3ext.h"
|
||||
SQLITE_EXTENSION_INIT1
|
||||
|
|
@ -23,7 +22,6 @@ SQLITE_EXTENSION_INIT1
|
|||
#include "sqlite3.h"
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef UINT32_TYPE
|
||||
#ifdef HAVE_UINT32_T
|
||||
#define UINT32_TYPE uint32_t
|
||||
|
|
@ -111,9 +109,11 @@ typedef size_t usize;
|
|||
#define min(a, b) (((a) <= (b)) ? (a) : (b))
|
||||
|
||||
enum VectorElementType {
|
||||
// clang-format off
|
||||
SQLITE_VEC_ELEMENT_TYPE_FLOAT32 = 223 + 0,
|
||||
SQLITE_VEC_ELEMENT_TYPE_BIT = 223 + 1,
|
||||
SQLITE_VEC_ELEMENT_TYPE_INT8 = 223 + 2,
|
||||
// clang-format on
|
||||
};
|
||||
|
||||
#ifdef SQLITE_VEC_ENABLE_AVX
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue