summaryrefslogtreecommitdiffstats
path: root/vespalib/src
diff options
context:
space:
mode:
authorHÃ¥vard Pettersen <havardpe@gmail.com>2016-09-15 16:15:27 +0200
committerGitHub <noreply@github.com>2016-09-15 16:15:27 +0200
commitbf1333c9d6fe3ebd5f736035857f155131702961 (patch)
tree0c88ffde6257e2ec520bd5e22d5c62f33358daa7 /vespalib/src
parent6c38cb28c3d53efd80980f8f519b2e818a628042 (diff)
parent892f9a9a7049bee59f4e64ee8245fcf5430ec128 (diff)
Merge pull request #663 from yahoo/geirst/change-to-compact-tensor-v2-as-default
Change to using CompactTensorV2 as default impl for sparse tensors.
Diffstat (limited to 'vespalib/src')
-rw-r--r--vespalib/src/vespa/vespalib/tensor/default_tensor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vespalib/src/vespa/vespalib/tensor/default_tensor.h b/vespalib/src/vespa/vespalib/tensor/default_tensor.h
index e1eef7c1d03..61c564e4943 100644
--- a/vespalib/src/vespa/vespalib/tensor/default_tensor.h
+++ b/vespalib/src/vespa/vespalib/tensor/default_tensor.h
@@ -2,15 +2,15 @@
#pragma once
-#include "compact/compact_tensor.h"
-#include "compact/compact_tensor_builder.h"
+#include "compact/compact_tensor_v2.h"
+#include "compact/compact_tensor_v2_builder.h"
namespace vespalib {
namespace tensor {
struct DefaultTensor {
- using type = CompactTensor;
- using builder = CompactTensorBuilder;
+ using type = CompactTensorV2;
+ using builder = CompactTensorV2Builder;
};
} // namespace vespalib::tensor