ONE - On-device Neural Engine
Loading...
Searching...
No Matches
CircleOutput.cpp
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2020 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 "
luci/IR/Nodes/CircleOutput.h
"
18
19
#include <cassert>
20
#include <limits>
21
22
namespace
luci
23
{
24
25
void
CircleOutput::index
(
const
loco::GraphOutputIndex
&index)
26
{
27
// CircleOutput internally stores "GraphOutputIndex" as int64_t
28
_index =
static_cast<
int64_t
>
(
index
);
29
}
30
31
loco::GraphOutputIndex
CircleOutput::index
(
void
)
const
32
{
33
assert(_index >= std::numeric_limits<loco::GraphOutputIndex>::min());
34
assert(_index <= std::numeric_limits<loco::GraphOutputIndex>::max());
35
return
static_cast<
loco::GraphOutputIndex
>
(_index);
36
}
37
38
}
// namespace luci
CircleOutput.h
luci::CircleOutput::index
loco::GraphOutputIndex index(void) const
Definition
CircleOutput.cpp:31
loco::GraphOutputIndex
uint32_t GraphOutputIndex
Definition
GraphOutputIndex.h:25
luci
Definition
CircleModel.h:27
compiler
luci
lang
src
Nodes
CircleOutput.cpp
Generated by
1.9.8