aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/tensor/instruction_benchmark
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2020-09-25 12:55:23 +0000
committerArne Juul <arnej@verizonmedia.com>2020-09-28 12:11:35 +0000
commit42e08d6a2649d4e9421ba64de1d310e1e82cc262 (patch)
tree52ad602298521493c1c6e0a465d7e98cb4269921 /eval/src/tests/tensor/instruction_benchmark
parent24692327c04f076551c831b450e2c05bcafbbaed (diff)
benchmark with new "adaptive" factory
Diffstat (limited to 'eval/src/tests/tensor/instruction_benchmark')
-rw-r--r--eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp b/eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp
index 8bb227a7e85..e3cfa6f8258 100644
--- a/eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp
+++ b/eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp
@@ -29,7 +29,7 @@
#include <vespa/eval/eval/operation.h>
#include <vespa/eval/eval/tensor_function.h>
#include <vespa/eval/tensor/default_tensor_engine.h>
-#include <vespa/eval/tensor/mixed/packed_mixed_tensor_builder_factory.h>
+#include <vespa/eval/tensor/default_value_builder_factory.h>
#include <vespa/vespalib/util/benchmark_timer.h>
#include <vespa/vespalib/util/stringfmt.h>
#include <vespa/vespalib/util/stash.h>
@@ -94,13 +94,13 @@ struct EngineImpl : Impl {
EngineImpl simple_tensor_engine_impl(" [SimpleTensorEngine]", SimpleTensorEngine::ref());
EngineImpl default_tensor_engine_impl("[DefaultTensorEngine]", DefaultTensorEngine::ref());
ValueImpl simple_value_impl(" [SimpleValue]", SimpleValueBuilderFactory::get());
-ValueImpl packed_mixed_tensor_impl(" [PackedMixedTensor]", PackedMixedTensorBuilderFactory::get());
+ValueImpl default_tensor_value_impl(" [Adaptive Value]", DefaultValueBuilderFactory::get());
double budget = 5.0;
std::vector<CREF<Impl>> impl_list = {simple_tensor_engine_impl,
default_tensor_engine_impl,
simple_value_impl,
- packed_mixed_tensor_impl};
+ default_tensor_value_impl};
//-----------------------------------------------------------------------------