Skip to content
Merged
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
3 changes: 2 additions & 1 deletion runtime/executor/method.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ Result<Method> Method::load(
temp_allocator = platform_allocator;
}
Method method(program, memory_manager, event_tracer, temp_allocator);

ET_LOG(Debug, "Loading method: %s.", s_plan->name()->c_str());
Error err = method.init(s_plan, named_data_map);
if (err != Error::Ok) {
return err;
Expand Down Expand Up @@ -1522,6 +1522,7 @@ Error Method::execute() {
initialized(),
NotSupported,
"Cannot execute until method has been initialized.");
ET_LOG(Debug, "Executing method: %s.", method_meta().name());

// Chains are executed sequentially today, but future async designs may
// branch and run many in parallel or out of order.
Expand Down
Loading