aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/instruction/sparse_no_overlap_join_function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'eval/src/vespa/eval/instruction/sparse_no_overlap_join_function.cpp')
-rw-r--r--eval/src/vespa/eval/instruction/sparse_no_overlap_join_function.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/eval/src/vespa/eval/instruction/sparse_no_overlap_join_function.cpp b/eval/src/vespa/eval/instruction/sparse_no_overlap_join_function.cpp
index 9153d65309d..f4bb5ec4b73 100644
--- a/eval/src/vespa/eval/instruction/sparse_no_overlap_join_function.cpp
+++ b/eval/src/vespa/eval/instruction/sparse_no_overlap_join_function.cpp
@@ -103,11 +103,11 @@ SparseNoOverlapJoinFunction::SparseNoOverlapJoinFunction(const tensor_function::
}
InterpretedFunction::Instruction
-SparseNoOverlapJoinFunction::compile_self(const ValueBuilderFactory &factory, Stash &stash) const
+SparseNoOverlapJoinFunction::compile_self(const CTFContext &ctx) const
{
- const auto &param = stash.create<JoinParam>(result_type(),
- lhs().result_type(), rhs().result_type(),
- function(), factory);
+ const auto &param = ctx.stash.create<JoinParam>(result_type(),
+ lhs().result_type(), rhs().result_type(),
+ function(), ctx.factory);
auto op = typify_invoke<2,MyTypify,SelectSparseNoOverlapJoinOp>(result_type().cell_meta().limit(), function());
return {op, wrap_param<JoinParam>(param)};
}