Skip to content

Commit d39d258

Browse files
committed
Fixed lint error
1 parent 069c75f commit d39d258

File tree

1 file changed

+2
-1
lines changed
  • onnxruntime/core/providers/webnn/builders

1 file changed

+2
-1
lines changed

onnxruntime/core/providers/webnn/builders/model.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ Status Model::Predict(const InlinedHashMap<std::string, OnnxTensorData>& inputs,
125125
output_views.insert({name, view});
126126
}
127127
emscripten::val results = wnn_context_.call<emscripten::val>(
128-
"compute", wnn_graph_, wnn_inputs_, wnn_outputs_).await();
128+
"compute", wnn_graph_, wnn_inputs_, wnn_outputs_)
129+
.await();
129130

130131
// Copy the outputs from pre-allocated ArrayBuffers back to the Wasm ArrayBuffer.
131132
for (const auto& output : outputs) {

0 commit comments

Comments
 (0)