aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/eval/test/reference_evaluation.h
blob: f61131aff74016f2e9e726e26a300484658aac06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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/tensor_spec.h>
#include <vector>

namespace vespalib::eval { class Function; }

namespace vespalib::eval::test {

struct ReferenceEvaluation {
    static TensorSpec eval(const Function &function, const std::vector<TensorSpec> &params);
};

} // namespace