File tree 5 files changed +8
-6
lines changed
5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 13
13
namespace diskann
14
14
{
15
15
16
- template <typename data_t > struct AbstractScratch ;
16
+ template <typename data_t > class AbstractScratch ;
17
17
18
18
template <typename data_t > class AbstractDataStore
19
19
{
Original file line number Diff line number Diff line change 2
2
namespace diskann
3
3
{
4
4
5
- template <typename data_t > struct PQScratch ;
5
+ template <typename data_t > class PQScratch ;
6
6
7
7
// By somewhat more than a coincidence, it seems that both InMemQueryScratch
8
8
// and SSDQueryScratch have the aligned query and PQScratch objects. So we
9
9
// can put them in a neat hierarchy and keep PQScratch as a standalone class.
10
- template <typename data_t > struct AbstractScratch
10
+ template <typename data_t > class AbstractScratch
11
11
{
12
+ public:
12
13
AbstractScratch () = default ;
13
14
// This class does not take any responsibilty for memory management of
14
15
// its members. It is the responsibility of the derived classes to do so.
Original file line number Diff line number Diff line change 6
6
namespace diskann
7
7
{
8
8
9
- template <typename T> struct PQScratch
9
+ template <typename T> class PQScratch
10
10
{
11
+ public:
11
12
float *aligned_pqtable_dist_scratch = nullptr ; // MUST BE AT LEAST [256 * NCHUNKS]
12
13
float *aligned_dist_scratch = nullptr ; // MUST BE AT LEAST diskann MAX_DEGREE
13
14
uint8_t *aligned_pq_coord_scratch = nullptr ; // AT LEAST [N_CHUNKS * MAX_DEGREE]
Original file line number Diff line number Diff line change 6
6
7
7
namespace diskann
8
8
{
9
- template <typename data_t > struct PQScratch ;
9
+ template <typename data_t > class PQScratch ;
10
10
11
11
template <typename data_t > class QuantizedDistance
12
12
{
Original file line number Diff line number Diff line change 19
19
20
20
namespace diskann
21
21
{
22
- template <typename T> struct PQScratch ;
22
+ template <typename T> class PQScratch ;
23
23
24
24
//
25
25
// AbstractScratch space for in-memory index based search
You can’t perform that action at this time.
0 commit comments