Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion backends/vulkan/runtime/graph/ops/OperatorRegistry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ bool OperatorRegistry::has_op(const std::string& name) {

OperatorRegistry::OpFunction& OperatorRegistry::get_op_fn(
const std::string& name) {
return table_.find(name)->second;
const auto it = table_.find(name);
VK_CHECK_COND(it != table_.end(), "Could not find operator with name ", name);
return it->second;
}

void OperatorRegistry::register_op(const std::string& name, OpFunction& fn) {
Expand Down