aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/tensor
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2021-02-15 13:59:25 +0000
committerArne Juul <arnej@verizonmedia.com>2021-02-15 14:16:23 +0000
commitf46944aba83038800348381f5964dd29d9711f8b (patch)
tree985fdb953d41fbf35d20cc990795c8b78cbb9f21 /eval/src/tests/tensor
parent930cb9aa6409fda28bbeae268923b91e552f23fa (diff)
use size literals in eval
Diffstat (limited to 'eval/src/tests/tensor')
-rw-r--r--eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp35
1 files changed, 18 insertions, 17 deletions
diff --git a/eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp b/eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp
index d8dff63cddf..ec49f9772a8 100644
--- a/eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp
+++ b/eval/src/tests/tensor/instruction_benchmark/instruction_benchmark.cpp
@@ -20,30 +20,31 @@
// implementations against each other, a smoke test is performed by
// verifying that all implementations produce the same result.
-#include <vespa/eval/eval/simple_value.h>
#include <vespa/eval/eval/fast_value.h>
#include <vespa/eval/eval/interpreted_function.h>
+#include <vespa/eval/eval/operation.h>
+#include <vespa/eval/eval/optimize_tensor_function.h>
+#include <vespa/eval/eval/simple_value.h>
+#include <vespa/eval/eval/tensor_function.h>
+#include <vespa/eval/eval/tensor_spec.h>
+#include <vespa/eval/eval/test/gen_spec.h>
+#include <vespa/eval/eval/value_codec.h>
#include <vespa/eval/instruction/generic_concat.h>
#include <vespa/eval/instruction/generic_join.h>
-#include <vespa/eval/instruction/generic_reduce.h>
-#include <vespa/eval/instruction/generic_rename.h>
#include <vespa/eval/instruction/generic_map.h>
#include <vespa/eval/instruction/generic_merge.h>
-#include <vespa/eval/eval/tensor_spec.h>
-#include <vespa/eval/eval/value_codec.h>
-#include <vespa/eval/eval/operation.h>
-#include <vespa/eval/eval/tensor_function.h>
-#include <vespa/eval/eval/optimize_tensor_function.h>
-#include <vespa/vespalib/util/benchmark_timer.h>
-#include <vespa/vespalib/util/stringfmt.h>
-#include <vespa/vespalib/objects/nbostream.h>
-#include <vespa/vespalib/util/stash.h>
-#include <vespa/vespalib/gtest/gtest.h>
-#include <vespa/vespalib/io/mapped_file_input.h>
-#include <vespa/vespalib/io/fileutil.h>
+#include <vespa/eval/instruction/generic_reduce.h>
+#include <vespa/eval/instruction/generic_rename.h>
#include <vespa/vespalib/data/slime/slime.h>
#include <vespa/vespalib/data/smart_buffer.h>
-#include <vespa/eval/eval/test/gen_spec.h>
+#include <vespa/vespalib/gtest/gtest.h>
+#include <vespa/vespalib/io/fileutil.h>
+#include <vespa/vespalib/io/mapped_file_input.h>
+#include <vespa/vespalib/objects/nbostream.h>
+#include <vespa/vespalib/util/benchmark_timer.h>
+#include <vespa/vespalib/util/size_literals.h>
+#include <vespa/vespalib/util/stash.h>
+#include <vespa/vespalib/util/stringfmt.h>
#include <optional>
#include <algorithm>
@@ -315,7 +316,7 @@ void load_ghost(const vespalib::string &file_name) {
}
void save_result(const vespalib::string &file_name) {
- SmartBuffer output(4096);
+ SmartBuffer output(4_Ki);
JsonFormat::encode(prod_result, output, false);
Memory memory = output.obtain();
File file(file_name);