Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tf_stage.cpp - corrected Inference time display unit #700

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Jul 22, 2024

  1. Update tf_stage.cpp - corrected Inference time display unit

    The inference time (time_taken) is displayed as "ms" which is the standard abbreviation for millisecond, however the variable time_taken is declared in microseconds. The abbreviate for that is "us" if displayed with a standard character set.
    
    auto time_taken = ExecutionTime<std::micro>(&TfStage::runInference, this).count();
    gftrobots authored Jul 22, 2024
    Configuration menu
    Copy the full SHA
    5e90e6b View commit details
    Browse the repository at this point in the history