aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/instruction/pow_as_map_optimizer.cpp
blob: 7ad724919395930c6b0d0af6924daa639de2bde6 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "pow_as_map_optimizer.h"
#include <vespa/eval/eval/operation.h>

namespace vespalib::eval {

using namespace tensor_function;
using namespace operation;

const TensorFunction &
PowAsMapOptimizer::optimize(const TensorFunction &expr, Stash &stash)
{
    if (auto join = as<Join>(expr)) {
        const TensorFunction &lhs = join->lhs();
        const TensorFunction &rhs = join->rhs();
        if ((join->function() == Pow::f) &&
            rhs.result_type().is_double())
        {
            if (auto const_value = as<ConstValue>(rhs)) {
                if (const_value->value().as_double() == 2.0) {
                    return map(lhs, Square::f, stash);
                }
                if (const_value->value().as_double() == 3.0) {
                    return map(lhs, Cube::f, stash);
                }
            }
        }
    }
    return expr;
}

} // namespace vespalib::eval