aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorArne H Juul <arnej27959@users.noreply.github.com>2020-12-03 11:38:31 +0100
committerGitHub <noreply@github.com>2020-12-03 11:38:31 +0100
commit245bb24179b5e5e2872e275140d17ba0cacfa448 (patch)
tree44c6545bef12190fe06e12fe14adab7bdd1b1e72 /searchcore
parentc24604eed546a039c4710ecb92f109dea6b363de (diff)
parentfd18a4b076cefcacaaf4a35e7a89dff0a3e36b1c (diff)
Merge pull request #15627 from vespa-engine/arnej/no-more-default-tensor-engine
no more default tensor engine
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/proton.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/proton.cpp b/searchcore/src/vespa/searchcore/proton/server/proton.cpp
index fa7ea039798..c2b57734903 100644
--- a/searchcore/src/vespa/searchcore/proton/server/proton.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/proton.cpp
@@ -19,7 +19,6 @@
#include <vespa/document/repo/documenttyperepo.h>
#include <vespa/eval/eval/engine_or_factory.h>
#include <vespa/eval/eval/fast_value.h>
-#include <vespa/eval/tensor/default_tensor_engine.h>
#include <vespa/searchcore/proton/flushengine/flush_engine_explorer.h>
#include <vespa/searchcore/proton/flushengine/flushengine.h>
#include <vespa/searchcore/proton/flushengine/tls_stats_factory.h>
@@ -78,7 +77,7 @@ void
set_tensor_implementation(const ProtonConfig& cfg)
{
if (cfg.tensorImplementation == ProtonConfig::TensorImplementation::TENSOR_ENGINE) {
- EngineOrFactory::set(vespalib::tensor::DefaultTensorEngine::ref());
+ LOG(error, "Old tensor engine implementation no longer available");
} else if (cfg.tensorImplementation == ProtonConfig::TensorImplementation::FAST_VALUE) {
EngineOrFactory::set(vespalib::eval::FastValueBuilderFactory::get());
}