mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-29 23:06:41 +00:00
fix build break (#8536)
This commit is contained in:
parent
778680202b
commit
94c54718fb
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ common::Status ORTInvoker::Invoke(const std::string& op_name,
|
|||
node.SetExecutionProviderType(execution_provider_->Type());
|
||||
std::vector<const Node*> frame_nodes{&node};
|
||||
|
||||
OptimizerExecutionFrame::Info info({&node}, initializer_map, graph.ModelPath(), *execution_provider_);
|
||||
OptimizerExecutionFrame::Info info({&node}, initializer_map, graph.ModelPath(), *execution_provider_, [](std::string const& ) { return false; });
|
||||
auto kernel = info.CreateKernel(&node);
|
||||
if (!kernel) {
|
||||
ORT_THROW("Could not find kernel name:", op_name, ", domain:", domain, ", version:", version);
|
||||
|
|
|
|||
Loading…
Reference in a new issue