We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cb625a commit ac789abCopy full SHA for ac789ab
examples/portable/executor_runner/executor_runner.cpp
@@ -251,7 +251,7 @@ int main(int argc, char** argv) {
251
252
// Run the model.
253
for (uint32_t i = 0; i < FLAGS_num_executions; i++) {
254
- ET_LOG(Info, "Preparing inputs.");
+ ET_LOG(Debug, "Preparing inputs.");
255
// Allocate input tensors and set all of their elements to 1. The `inputs`
256
// variable owns the allocated memory and must live past the last call to
257
// `execute()`.
@@ -265,7 +265,7 @@ int main(int argc, char** argv) {
265
inputs.ok(),
266
"Could not prepare inputs: 0x%" PRIx32,
267
(uint32_t)inputs.error());
268
- ET_LOG(Info, "Inputs prepared.");
+ ET_LOG(Debug, "Inputs prepared.");
269
270
Error status = method->execute();
271
ET_CHECK_MSG(
0 commit comments