2 * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 #include "luci/Import/Nodes/CircleBatchToSpaceND.h"
19 #include <luci/IR/Nodes/CircleBatchToSpaceND.h>
28 bool CircleBatchToSpaceNDGraphBuilder::validate(const ValidateArgs &args) const
30 const auto &inputs = args.op.inputs;
31 if (inputs.size() != 3)
34 // input 1 and 2 should have INT32/INT64 type
35 const auto &tensors = args.reader.tensors();
36 const auto &tensor_1 = tensors.at(inputs.at(1));
37 switch (tensor_1->type)
39 case circle::TensorType_INT32:
40 case circle::TensorType_INT64:
45 const auto &tensor_2 = tensors.at(inputs.at(2));
46 switch (tensor_2->type)
48 case circle::TensorType_INT32:
49 case circle::TensorType_INT64:
55 // Only support input shape dimension 3 and 4 only
56 const auto &tensor_0 = tensors.at(inputs.at(0));
57 const auto t_0_s = tensor_0->shape.size();
58 if (t_0_s != 3 && t_0_s != 4)
61 // TODO check input shape
66 CircleNode *CircleBatchToSpaceNDGraphBuilder::build_node(const circle::OperatorT &,
67 const std::vector<CircleNode *> &inputs,
68 loco::Graph *graph) const
70 auto *node = graph->nodes()->create<CircleBatchToSpaceND>();
71 node->input(inputs.at(0));
72 node->block_shape(inputs.at(1));
73 node->crops(inputs.at(2));
75 // No options for BatchToSpaceND