aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/instruction/remove_trivial_dimension_optimizer.h
blob: 5c7be763d5845f40770a4b89a6daa0b515983801 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/eval/eval/tensor_function.h>

namespace vespalib::eval {

/**
 * Tensor function optimizer for efficient removal of dimensions with
 * known size 1.
 **/
struct RemoveTrivialDimensionOptimizer {
    static const TensorFunction &optimize(const TensorFunction &expr, Stash &stash);
};

} // namespace vespalib::eval