aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/tensor/tensor_store.cpp
blob: 5dbdfb283800bd9eb3b9e4f04a8ac50c8d4a989d (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "tensor_store.h"

namespace search::tensor {

TensorStore::TensorStore(vespalib::datastore::DataStoreBase &store)
    : _store(store),
      _compaction_spec()
{ }

TensorStore::~TensorStore() = default;

const DenseTensorStore*
TensorStore::as_dense() const
{
    return nullptr;
}

DenseTensorStore*
TensorStore::as_dense()
{
    return nullptr;
}

}