aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/instruction/fast_rename_optimizer.cpp
blob: 1f851190c9c8e364caca979325d2aa1986420965 (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
59
60
61
62
63
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "fast_rename_optimizer.h"
#include "replace_type_function.h"
#include <vespa/eval/eval/value.h>
#include <optional>

namespace vespalib::eval {

using namespace tensor_function;

bool
FastRenameOptimizer::is_stable_rename(const ValueType &from_type, const ValueType &to_type,
                                      const std::vector<vespalib::string> &from,
                                      const std::vector<vespalib::string> &to)
{
    assert(from.size() == to.size());
    auto get_from_idx = [&](const vespalib::string &to_name) {
        for (size_t i = 0; i < to.size(); ++i) {
            if (to[i] == to_name) {
                return from_type.dimension_index(from[i]);
            }
        }
        return from_type.dimension_index(to_name);
    };
    std::optional<size_t> prev_mapped;
    std::optional<size_t> prev_indexed;
    const auto &from_dims = from_type.dimensions();
    for (const auto &to_dim: to_type.dimensions()) {
        size_t from_idx = get_from_idx(to_dim.name);
        assert(from_idx != ValueType::Dimension::npos);
        if (to_dim.is_mapped()) {
            assert(from_dims[from_idx].is_mapped());
            if (prev_mapped && (prev_mapped.value() > from_idx)) {
                return false;
            }
            prev_mapped = from_idx;
        } else if (!to_dim.is_trivial()) {
            assert(from_dims[from_idx].is_indexed());
            if (prev_indexed && (prev_indexed.value() > from_idx)) {
                return false;
            }
            prev_indexed = from_idx;
        }
    }
    return true;
}

const TensorFunction &
FastRenameOptimizer::optimize(const TensorFunction &expr, Stash &stash)
{
    if (auto rename = as<Rename>(expr)) {
        const ValueType &from_type = rename->child().result_type();
        const ValueType &to_type = expr.result_type();
        if (is_stable_rename(from_type, to_type, rename->from(), rename->to())) {
            assert(to_type.cell_type() == from_type.cell_type());
            return ReplaceTypeFunction::create_compact(to_type, rename->child(), stash);
        }
    }
    return expr;
}

} // namespace vespalib::eval