summaryrefslogtreecommitdiffstats
path: root/eval/src/tests/instruction/generic_concat/generic_concat_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'eval/src/tests/instruction/generic_concat/generic_concat_test.cpp')
-rw-r--r--eval/src/tests/instruction/generic_concat/generic_concat_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/tests/instruction/generic_concat/generic_concat_test.cpp b/eval/src/tests/instruction/generic_concat/generic_concat_test.cpp
index dc69bce30f6..b48c1e2253c 100644
--- a/eval/src/tests/instruction/generic_concat/generic_concat_test.cpp
+++ b/eval/src/tests/instruction/generic_concat/generic_concat_test.cpp
@@ -126,7 +126,7 @@ TensorSpec perform_generic_concat(const TensorSpec &a, const TensorSpec &b, cons
auto lhs = value_from_spec(a, factory);
auto rhs = value_from_spec(b, factory);
auto my_op = GenericConcat::make_instruction(lhs->type(), rhs->type(), concat_dim, factory, stash);
- InterpretedFunction::EvalSingle single(my_op);
+ InterpretedFunction::EvalSingle single(factory, my_op);
return spec_from_value(single.eval(std::vector<Value::CREF>({*lhs,*rhs})));
}