6ce4e38c637e8e19a2dde839a4526d5434d3bc59
[platform/core/ml/nnfw.git] / runtime / onert / core / src / ir / LayoutSet.h
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
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
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 #ifndef __ONERT_IR_LAYOUT_SET_H__
18 #define __ONERT_IR_LAYOUT_SET_H__
19
20 #include <initializer_list>
21 #include <unordered_set>
22
23 #include "ir/Layout.h"
24
25 namespace onert
26 {
27 namespace ir
28 {
29
30 class LayoutSet
31 {
32 public:
33   LayoutSet() = default;
34   LayoutSet(std::initializer_list<Layout> layouts);
35
36 public:
37   void add(const Layout &layout) { _set.insert(layout); }
38   void remove(const Layout &layout) { _set.erase(layout); }
39   uint32_t size() const { return static_cast<uint32_t>(_set.size()); }
40   bool contains(const Layout &layout) const { return _set.find(layout) != _set.end(); }
41
42 public:
43   LayoutSet operator|(const LayoutSet &other) const; // Union
44   LayoutSet operator&(const LayoutSet &other) const; // Intersect
45   LayoutSet operator-(const LayoutSet &other) const; // Minus
46
47 public:
48   std::unordered_set<Layout>::const_iterator begin() const { return _set.begin(); }
49   std::unordered_set<Layout>::const_iterator end() const { return _set.end(); }
50
51 private:
52   std::unordered_set<Layout> _set;
53 };
54
55 } // namespace ir
56 } // namespace onert
57
58 #endif // __ONERT_IR_LAYOUT_SET_H__