Spaces:
Running
Running
File size: 1,830 Bytes
2a0bc63 |
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 |
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <faiss/impl/IDSelector.h>
#include <faiss/impl/io.h>
#include <faiss/invlists/InvertedLists.h>
#include "Python.h"
// all callbacks have to acquire the GIL on input
/***********************************************************
* Callbacks for IO reader and writer
***********************************************************/
struct PyCallbackIOWriter : faiss::IOWriter {
PyObject* callback;
size_t bs; // maximum write size
/** Callback: Python function that takes a bytes object and
* returns the number of bytes successfully written.
*/
explicit PyCallbackIOWriter(PyObject* callback, size_t bs = 1024 * 1024);
size_t operator()(const void* ptrv, size_t size, size_t nitems) override;
~PyCallbackIOWriter() override;
};
struct PyCallbackIOReader : faiss::IOReader {
PyObject* callback;
size_t bs; // maximum buffer size
/** Callback: Python function that takes a size and returns a
* bytes object with the resulting read */
explicit PyCallbackIOReader(PyObject* callback, size_t bs = 1024 * 1024);
size_t operator()(void* ptrv, size_t size, size_t nitems) override;
~PyCallbackIOReader() override;
};
/***********************************************************
* Callbacks for IDSelector
***********************************************************/
struct PyCallbackIDSelector : faiss::IDSelector {
PyObject* callback;
explicit PyCallbackIDSelector(PyObject* callback);
bool is_member(faiss::idx_t id) const override;
~PyCallbackIDSelector() override;
};
|