aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/tensor/tensor_store.cpp
blob: b88e94fe6239303f91b81ed3c82bab64c4a73bd1 (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 Yahoo. 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;
}

}