ONE - On-device Neural Engine
Loading...
Searching...
No Matches
Use.cpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 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#include "loco/IR/Use.h"
18#include "loco/IR/Node.h"
19
20#include <cassert>
21
22namespace loco
23{
24
25void Use::node(Node *node)
26{
27 if (_node != nullptr)
28 {
29 assert(_node->_uses.find(this) != _node->_uses.end());
30 _node->_uses.erase(this);
31 _node = nullptr;
32 }
33
34 assert(_node == nullptr);
35
36 if (node != nullptr)
37 {
38 _node = node;
39 _node->_uses.insert(this);
40 }
41
42 assert(_node == node);
43}
44
45} // namespace loco
Logical unit of computation.
Definition Node.h:54
Node * node(void) const
Definition Use.h:58