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
8 changes: 4 additions & 4 deletions examples/devtools/example_runner/example_runner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ int main(int argc, char** argv) {
method.ok(),
"Loading of method %s failed with status 0x%" PRIx32,
method_name,
method.error());
static_cast<int>(method.error()));
ET_LOG(Info, "Method loaded.");

void* debug_buffer = malloc(FLAGS_debug_buffer_size);
Expand All @@ -242,7 +242,7 @@ int main(int argc, char** argv) {
ET_CHECK_MSG(
status == Error::Ok,
"LoadBundledInput failed with status 0x%" PRIx32,
status);
static_cast<int>(status));

ET_LOG(Info, "Inputs prepared.");

Expand All @@ -252,7 +252,7 @@ int main(int argc, char** argv) {
status == Error::Ok,
"Execution of method %s failed with status 0x%" PRIx32,
method_name,
status);
static_cast<int>(status));
ET_LOG(Info, "Model executed successfully.");

// Print the outputs.
Expand Down Expand Up @@ -294,7 +294,7 @@ int main(int argc, char** argv) {
ET_CHECK_MSG(
status == Error::Ok,
"Bundle verification failed with status 0x%" PRIx32,
status);
static_cast<int>(status));
ET_LOG(Info, "Model verified successfully.");
}

Expand Down
Loading