summaryrefslogtreecommitdiff
path: root/runtimes/libs/misc/src/tensor/Comparator.cpp
blob: e765e77b2c669b2c3f9a8c6584f8751081b35db0 (plain)
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
34
35
36
37
38
#include "misc/tensor/Comparator.h"
#include "misc/tensor/Zipper.h"

#include "misc/fp32.h"

namespace nnfw
{
namespace misc
{
namespace tensor
{

std::vector<Diff<float>> Comparator::compare(const Shape &shape, const Reader<float> &expected,
                                             const Reader<float> &obtained,
                                             Observer *observer) const
{
  std::vector<Diff<float>> res;

  zip(shape, expected, obtained) <<
      [&](const Index &index, float expected_value, float obtained_value) {
        if (!_compare_fn(expected_value, obtained_value))
        {
          res.emplace_back(index, expected_value, obtained_value);
        }

        // Update max_diff_index, if necessary
        if (observer != nullptr)
        {
          observer->notify(index, expected_value, obtained_value);
        }
      };

  return res;
}

} // namespace tensor
} // namespace misc
} // namespace nnfw