aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/instruction/vector_from_doubles_function/vector_from_doubles_function_test.cpp
blob: 65cc8ec00558765ccdb2d50d6aa06d7bf8d33bca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/eval/eval/tensor_function.h>
#include <vespa/eval/instruction/vector_from_doubles_function.h>
#include <vespa/eval/eval/test/gen_spec.h>
#include <vespa/eval/eval/test/eval_fixture.h>

#include <vespa/vespalib/util/stringfmt.h>
#include <vespa/vespalib/util/stash.h>

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<VectorFromDoublesFunction>();
    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<Concat>().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(); }