# HG changeset patch # User mas01mc # Date 1233165258 0 # Node ID cbd5841e6b70c99da754bdf8eead577cb543e42a # Parent 11dd6eab15c83f6a060d4ce93f628a240d85ec0f Set ADB_FIXME_DEFAULT_LSH_N_POINT_BITS to 15 so we can get about 20k vectors per file in the LSH point encoding. This pain and suffering will go away soon, I promise. diff -r 11dd6eab15c8 -r cbd5841e6b70 Makefile --- a/Makefile Wed Jan 28 17:18:58 2009 +0000 +++ b/Makefile Wed Jan 28 17:54:18 2009 +0000 @@ -23,7 +23,7 @@ #override CFLAGS+=-DLSH_DUMP_CORE_TABLES # set to turn on debugging information for LSH hashtables -#override CFLAGS+=-D_LSH_DEBUG_ +override CFLAGS+=-D_LSH_DEBUG_ # set to increase multiple probes in LSH QUERY (allowable range = 1 ... lsh_k*2) #override CFLAGS+=-DLSH_MULTI_PROBE_COUNT=10 diff -r 11dd6eab15c8 -r cbd5841e6b70 audioDB-internals.h --- a/audioDB-internals.h Wed Jan 28 17:18:58 2009 +0000 +++ b/audioDB-internals.h Wed Jan 28 17:54:18 2009 +0000 @@ -282,7 +282,7 @@ return ((track_id << n_point_bits) | track_pos); } -#define ADB_FIXME_DEFAULT_LSH_N_POINT_BITS 14 +#define ADB_FIXME_DEFAULT_LSH_N_POINT_BITS 15 #ifndef ADB_FIXME_LSH_N_POINT_BITS #define ADB_FIXME_LSH_N_POINT_BITS ADB_FIXME_DEFAULT_LSH_N_POINT_BITS #endif