summaryrefslogtreecommitdiff
path: root/compiler/luci-interpreter/src/loader/GraphLoader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/luci-interpreter/src/loader/GraphLoader.cpp')
-rw-r--r--compiler/luci-interpreter/src/loader/GraphLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/luci-interpreter/src/loader/GraphLoader.cpp b/compiler/luci-interpreter/src/loader/GraphLoader.cpp
index dba39050c..40207090b 100644
--- a/compiler/luci-interpreter/src/loader/GraphLoader.cpp
+++ b/compiler/luci-interpreter/src/loader/GraphLoader.cpp
@@ -187,7 +187,7 @@ void GraphLoader::loadTensors()
const auto *node = loco::must_cast<const luci::CircleNode *>(_graph->nodes()->at(i));
if (node->opcode() == luci::CircleOpcode::CUSTOM && !isSupportedCustomNode(node))
- throw std::runtime_error("Unknown Custom Node, yet.");
+ throw std::runtime_error("Unsupported Custom operator. " + node->name());
if (!isTensorProducingNode(node))
continue;