summaryrefslogtreecommitdiff
path: root/runtime/onert/frontend/circle/src/circle_loader.cc
blob: 49aaccc4c4b7aac0660c35e819122c3c0a4dbf41 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
 * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "circle_loader.h"
#include "base_loader.h"
#include "circle_schema_generated.h"

namespace onert
{
namespace circle_loader
{

namespace
{

ir::Layout convertDataFormat(circle::DataFormat data_format)
{
  switch (data_format)
  {
    case circle::DataFormat::DataFormat_CHANNELS_FIRST:
      return ir::Layout::NCHW;
    case circle::DataFormat::DataFormat_CHANNELS_LAST:
      return ir::Layout::NHWC;
    default:
      throw std::runtime_error("Unsupported DataFormat");
  }
}

struct LoaderDomain
{
  using Verifier = flatbuffers::Verifier;
  using ActivationFunctionType = circle::ActivationFunctionType;
  using Buffer = circle::Buffer;
  using BuiltinOperator = circle::BuiltinOperator;
  using CustomOptionsFormat = circle::CustomOptionsFormat;
  using Model = circle::Model;
  using Operator = circle::Operator;
  using Padding = circle::Padding;
  using Pool2DOptions = circle::Pool2DOptions;
  using Tensor = circle::Tensor;
  using TensorType = circle::TensorType;
  using SubGraph = circle::SubGraph;

  static const char *EnumNameBuiltinOperator(BuiltinOperator e)
  {
    return circle::EnumNameBuiltinOperator(e);
  }
  static const char *EnumNameActivationFunctionType(ActivationFunctionType e)
  {
    return circle::EnumNameActivationFunctionType(e);
  }
  static const char *EnumNameTensorType(TensorType e) { return circle::EnumNameTensorType(e); }
  static const Model *GetModel(const void *buf) { return circle::GetModel(buf); }
  static bool VerifyModelBuffer(Verifier &verifier) { return circle::VerifyModelBuffer(verifier); }
};

class CircleLoader final : public base_loader::BaseLoader<LoaderDomain, CircleLoader>
{
public:
  using BaseLoader::BaseLoader;

  std::unique_ptr<ir::Graph> loadSubgraph(const circle::SubGraph *circle_subg)
  {
    auto subg = std::make_unique<ir::Graph>();
    // Load tensors
    _tensor_to_operand.resize(circle_subg->tensors()->size());
    for (flatbuffers::uoffset_t i = 0; i < circle_subg->tensors()->size(); ++i)
    {
      _tensor_to_operand[i] = loadOperand(circle_subg->tensors()->Get(i), *subg);
    }
    // Set inputs
    for (const std::int32_t input_ind : *circle_subg->inputs())
    {
      subg->addInput(_tensor_to_operand[input_ind]);
    }
    // Set outputs
    for (const std::int32_t output_ind : *circle_subg->outputs())
    {
      subg->addOutput(_tensor_to_operand[output_ind]);
    }
    // Create operations
    for (const auto *op : *circle_subg->operators())
    {
      CircleLoader::loadOperation(op, *subg);
    }

    subg->setLayout(convertDataFormat(circle_subg->data_format()));

    subg->finishBuilding();

    return subg;
  }

  void loadOperation(const circle::Operator *op, ir::Graph &subg)
  {
    const auto builtin_op = _model->operator_codes()->Get(op->opcode_index())->builtin_code();

    switch (builtin_op)
    {
      case circle::BuiltinOperator::BuiltinOperator_INSTANCE_NORM:
        loadInstanceNorm(op, subg);
        return;
      default:
        BaseLoader::loadOperation(op, subg);
        return;
    }
  }
};

} // namespace

std::unique_ptr<ir::Graph> loadModel(const char *filename)
{
  auto primary_subgraph = std::make_unique<ir::Graph>();
  CircleLoader loader(primary_subgraph);
  loader.loadFromFile(filename);
  return primary_subgraph;
}

} // namespace circle_loader
} // namespace onert