summaryrefslogtreecommitdiff
path: root/compiler/moco/lang/include/moco/IR/Nodes/TFConcatV2.h
blob: 7f0d32697a9aff78cb3e2aedc942c7472b82250e (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
/*
 * 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.
 */

#ifndef __MOCO_IR_TFCONCATV2_H__
#define __MOCO_IR_TFCONCATV2_H__

#include "moco/IR/TFNodeDecl.h"
#include "moco/IR/VariadicArityNode.h"

namespace moco
{

/// @note TFConcatV2 corresponds to the following GraphDef
/*
node {
  name: "Concat"
  op: "ConcatV2"
  input: "Input01"
  input: "Input02"
  input: "Axis"
  attr {
    key: "N"
    value {
      i: 2
    }
  }
  attr {
    key: "T"
    value {
      type: DT_FLOAT
    }
  }
  attr {
    key: "Tidx"
    value {
      type: DT_INT32
    }
  }
}
*/

class TFConcatV2 final : public VariadicArityNode<TFNodeImpl<TFOpcode::ConcatV2>>
{
public:
  TFConcatV2(uint32_t arity) : VariadicArityNode<TFNodeImpl<TFOpcode::ConcatV2>>(arity + 1)
  {
    // we add +1 for axis of VariadicArityNode ctor
    // at least one value is required
    assert(arity >= 1);
  }

public:
  uint32_t num_values(void) const
  {
    // last one is for axis
    return arity() - 1;
  }

public:
  Node *values(uint32_t index) const
  {
    assert(index < num_values());
    return at(index)->node();
  }
  void values(uint32_t index, Node *node)
  {
    assert(index < num_values());
    at(index)->node(node);
  }

  Node *axis(void) const { return at(num_values())->node(); }
  void axis(Node *node) { at(num_values())->node(node); }
};

} // namespace moco

#endif // __MOCO_IR_TFCONCATV2_H__