aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/instruction/mixed_inner_product_function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'eval/src/vespa/eval/instruction/mixed_inner_product_function.cpp')
-rw-r--r--eval/src/vespa/eval/instruction/mixed_inner_product_function.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/eval/src/vespa/eval/instruction/mixed_inner_product_function.cpp b/eval/src/vespa/eval/instruction/mixed_inner_product_function.cpp
index 5c90dcebfd9..efd3398ef0c 100644
--- a/eval/src/vespa/eval/instruction/mixed_inner_product_function.cpp
+++ b/eval/src/vespa/eval/instruction/mixed_inner_product_function.cpp
@@ -65,11 +65,11 @@ MixedInnerProductFunction::MixedInnerProductFunction(const ValueType &res_type_i
}
InterpretedFunction::Instruction
-MixedInnerProductFunction::compile_self(const ValueBuilderFactory &, Stash &stash) const
+MixedInnerProductFunction::compile_self(const CTFContext &ctx) const
{
const auto &mix_type = lhs().result_type();
const auto &vec_type = rhs().result_type();
- auto &param = stash.create<MixedInnerProductParam>(result_type(), mix_type, vec_type);
+ auto &param = ctx.stash.create<MixedInnerProductParam>(result_type(), mix_type, vec_type);
using MyTypify = TypifyValue<TypifyCellType>;
auto op = typify_invoke<3,MyTypify,SelectMixedInnerProduct>(mix_type.cell_type(),
vec_type.cell_type(),