asg017 / sqlite-vss

A SQLite extension for efficient vector search, based on Faiss!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support GPU indicies

asg017 opened this issue · comments

Would need to distribute two version of sqlite-vss: A normal one with CPU support only, and another one with -DFAISS_ENABLE_GPU=ON.

Also might need to add an option to vss0 column declarations to enable GPU:

create virtual table photos using vss0(
  thumbnail_embedding(1024) factory="..." gpu=True,
);