summaryrefslogtreecommitdiff
path: root/runtime/onert/core/src/ir/OperationDumper.cc
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2020-08-14 15:19:19 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2020-08-14 15:19:19 +0900
commit042b262b3633b6c0f577aed6cb4b980ad0c1dcf3 (patch)
treee79fb9ffe65b21bdc5863306db2757ab187a3306 /runtime/onert/core/src/ir/OperationDumper.cc
parent05e0ec30a632339a8533082476f27bda31ccde16 (diff)
downloadnnfw-042b262b3633b6c0f577aed6cb4b980ad0c1dcf3.tar.gz
nnfw-042b262b3633b6c0f577aed6cb4b980ad0c1dcf3.tar.bz2
nnfw-042b262b3633b6c0f577aed6cb4b980ad0c1dcf3.zip
Imported Upstream version 1.8.0upstream/1.8.0submit/tizen/20200814.062151
Diffstat (limited to 'runtime/onert/core/src/ir/OperationDumper.cc')
-rw-r--r--runtime/onert/core/src/ir/OperationDumper.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/runtime/onert/core/src/ir/OperationDumper.cc b/runtime/onert/core/src/ir/OperationDumper.cc
index c4b61f3d4..e3cbce57a 100644
--- a/runtime/onert/core/src/ir/OperationDumper.cc
+++ b/runtime/onert/core/src/ir/OperationDumper.cc
@@ -613,6 +613,15 @@ void OperationDumper::visit(const SquaredDifference &node)
VERBOSE(LIR) << " - Output : Output(" << node.getOutputs().at(0) << ")" << std::endl;
}
+void OperationDumper::visit(const StatelessRandomUniform &node)
+{
+ VERBOSE(LIR) << "* StatelessRandomUniform" << std::endl;
+ VERBOSE(LIR) << " - Inputs : Input(" << node.getInputs().at(StatelessRandomUniform::Input::SHAPE)
+ << ", " << node.getInputs().at(StatelessRandomUniform::Input::SEED) << ")"
+ << std::endl;
+ VERBOSE(LIR) << " - Output : Output(" << node.getOutputs().at(0) << ")" << std::endl;
+}
+
void OperationDumper::visit(const Squeeze &node)
{
VERBOSE(LIR) << "* Squeeze" << std::endl;