summaryrefslogtreecommitdiffstats
path: root/eval/src
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2020-10-06 06:50:11 +0000
committerArne Juul <arnej@verizonmedia.com>2020-10-06 06:50:11 +0000
commit89069de6916e19bf2757dc5621ec4b57ce0f5e7f (patch)
treeebebd085b014d76e05f81d218ee5f3eb22d43b09 /eval/src
parent907e6b805dd31518cef75c9e91d8facf095b1c3d (diff)
out_loop_cnt is not needed in the final plan
Diffstat (limited to 'eval/src')
-rw-r--r--eval/src/vespa/eval/instruction/generic_concat.cpp1
-rw-r--r--eval/src/vespa/eval/instruction/generic_concat.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/vespa/eval/instruction/generic_concat.cpp b/eval/src/vespa/eval/instruction/generic_concat.cpp
index 2b1486a7edd..e3b3a3f0331 100644
--- a/eval/src/vespa/eval/instruction/generic_concat.cpp
+++ b/eval/src/vespa/eval/instruction/generic_concat.cpp
@@ -107,6 +107,7 @@ DenseConcatPlan::InOutLoop::InOutLoop(const ValueType &in_type,
std::string concat_dimension,
const ValueType &out_type)
{
+ std::vector<size_t> out_loop_cnt;
Case prev_case = Case::NONE;
auto update_plan = [&](Case my_case, size_t in_size, size_t out_size, size_t in_val, size_t out_val) {
if (my_case == prev_case) {
diff --git a/eval/src/vespa/eval/instruction/generic_concat.h b/eval/src/vespa/eval/instruction/generic_concat.h
index 99cea2e8745..c2636fb7678 100644
--- a/eval/src/vespa/eval/instruction/generic_concat.h
+++ b/eval/src/vespa/eval/instruction/generic_concat.h
@@ -25,7 +25,6 @@ struct DenseConcatPlan {
size_t input_size;
size_t output_size;
std::vector<size_t> in_loop_cnt;
- std::vector<size_t> out_loop_cnt;
std::vector<size_t> in_stride;
std::vector<size_t> out_stride;
template <typename F> void execute(size_t in_off, size_t out_off, const F &f) const {