ONE - On-device Neural Engine
Loading...
Searching...
No Matches
TestUtils.cpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved
3 * Copyright 2017 The TensorFlow Authors. All Rights Reserved.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include "kernels/TestUtils.h"
19
20namespace luci_interpreter
21{
22namespace kernels
23{
24namespace testing
25{
26
27using ::testing::FloatNear;
28using ::testing::Matcher;
29
30Matcher<std::vector<float>> FloatArrayNear(const std::vector<float> &values, float max_abs_error)
31{
32 std::vector<Matcher<float>> matchers;
33 matchers.reserve(values.size());
34 for (const float v : values)
35 {
36 matchers.emplace_back(FloatNear(v, max_abs_error));
37 }
38 return ElementsAreArray(matchers);
39}
40
41} // namespace testing
42} // namespace kernels
43} // namespace luci_interpreter
Matcher< std::vector< float > > FloatArrayNear(const std::vector< float > &values, float max_abs_error)