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

#pragma once

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

namespace vespalib::eval::instruction {

struct GenericMapSubspaces {
    static InterpretedFunction::Instruction
    make_instruction(const tensor_function::MapSubspaces &map_subspaces_in,
                     const ValueBuilderFactory &factory, Stash &stash);
};

} // namespace