summaryrefslogtreecommitdiff
path: root/compiler/luci-interpreter/src/loader/nodes/SquaredDifference.cpp
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2022-09-07 19:04:21 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2022-09-07 19:04:21 +0900
commitc690d52bdd137ed6a17353aa7af35e8141ece77b (patch)
treedbb7dd99133132dfbffcb8c9e9af4f1ffc2f4808 /compiler/luci-interpreter/src/loader/nodes/SquaredDifference.cpp
parent3ad689f0803519e343c36d5700646e86059df961 (diff)
downloadnnfw-accepted/tizen_7.0_unified_hotfix.tar.gz
nnfw-accepted/tizen_7.0_unified_hotfix.tar.bz2
nnfw-accepted/tizen_7.0_unified_hotfix.zip
Diffstat (limited to 'compiler/luci-interpreter/src/loader/nodes/SquaredDifference.cpp')
-rw-r--r--compiler/luci-interpreter/src/loader/nodes/SquaredDifference.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/luci-interpreter/src/loader/nodes/SquaredDifference.cpp b/compiler/luci-interpreter/src/loader/nodes/SquaredDifference.cpp
index 6a2717aa2..e4c6fd851 100644
--- a/compiler/luci-interpreter/src/loader/nodes/SquaredDifference.cpp
+++ b/compiler/luci-interpreter/src/loader/nodes/SquaredDifference.cpp
@@ -24,9 +24,7 @@ namespace luci_interpreter
std::unique_ptr<Kernel> build_kernel_CircleSquaredDifference(const luci::CircleNode *circle_node,
KernelBuilderHelper &helper)
{
- const auto *node = dynamic_cast<const luci::CircleSquaredDifference *>(circle_node);
- if (node == nullptr)
- throw std::runtime_error("wrong builder for operation");
+ const auto *node = loco::must_cast<const luci::CircleSquaredDifference *>(circle_node);
assert(node->arity() == 2);
const Tensor *input1 = helper.getInputTensor(node->x());