// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include #include #include #include #include #include #include using namespace vespalib; using namespace vespalib::eval; using namespace vespalib::eval::test; using namespace vespalib::eval::tensor_function; const ValueBuilderFactory &prod_factory = FastValueBuilderFactory::get(); EvalFixture::ParamRepo make_params() { return EvalFixture::ParamRepo() .add("a", GenSpec(1.0)) .add("b", GenSpec(2.0)) .add("c", GenSpec(3.0)) .add("d", GenSpec(4.0)) .add("x5", GenSpec().idx("x", 5)); } EvalFixture::ParamRepo param_repo = make_params(); void verify(const vespalib::string &expr, size_t expect_optimized_cnt, size_t expect_not_optimized_cnt) { EvalFixture fixture(prod_factory, expr, param_repo, true); EXPECT_EQUAL(fixture.result(), EvalFixture::ref(expr, param_repo)); auto info = fixture.find_all(); EXPECT_EQUAL(info.size(), expect_optimized_cnt); for (size_t i = 0; i < info.size(); ++i) { EXPECT_TRUE(info[i]->result_is_mutable()); } EXPECT_EQUAL(fixture.find_all().size(), expect_not_optimized_cnt); } //----------------------------------------------------------------------------- TEST("require that multiple concats are optimized") { TEST_DO(verify("concat(a,b,x)", 1, 0)); TEST_DO(verify("concat(a,concat(b,concat(c,d,x),x),x)", 1, 0)); TEST_DO(verify("concat(concat(concat(a,b,x),c,x),d,x)", 1, 0)); TEST_DO(verify("concat(concat(a,b,x),concat(c,d,x),x)", 1, 0)); } TEST("require that concat along different dimension is not optimized") { TEST_DO(verify("concat(concat(a,b,x),concat(c,d,x),y)", 2, 1)); } TEST("require that concat of vector and double is not optimized") { TEST_DO(verify("concat(a,x5,x)", 0, 1)); TEST_DO(verify("concat(x5,b,x)", 0, 1)); } TEST_MAIN() { TEST_RUN_ALL(); }