Removed unneeded headers [skip ci]

This commit is contained in:
Andrew Kane
2024-04-25 17:52:35 -07:00
parent 7f15221fb4
commit 6247b302fc
3 changed files with 0 additions and 5 deletions

View File

@@ -6,7 +6,6 @@
#include <float.h>
#include "bitutils.h"
#include "fmgr.h"
#include "vector.h"
#if defined(USE_DISPATCH)

View File

@@ -1,8 +1,6 @@
#ifndef SPARSEVEC_H
#define SPARSEVEC_H
#include "fmgr.h"
#define SPARSEVEC_MAX_DIM 1000000000
#define SPARSEVEC_MAX_NNZ 16000

View File

@@ -1,8 +1,6 @@
#ifndef VECTOR_H
#define VECTOR_H
#include "fmgr.h"
#define VECTOR_MAX_DIM 16000
#define VECTOR_SIZE(_dim) (offsetof(Vector, x) + sizeof(float)*(_dim))