Skip to content

Commit

Permalink
meta-benchmark: armnn: armnnTFLiteDelegateBenchmark: Remove unused pa…
Browse files Browse the repository at this point in the history
…rameter

The ArmNN armnn::LogSeverity parameter is not used as part of the RunInference
function, so can now be removed.

Signed-off-by: Gareth Williams <gareth.williams.jx@renesas.com>
  • Loading branch information
GW-Renesas authored and patersonc committed Dec 14, 2021
1 parent eefa61b commit f133c9d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ void printInterpretatorData(std::unique_ptr<Interpreter> & interpreter, Settings
}
}

void RunInference(Settings* settings, armnn::LogSeverity armnnLogLevel,
DelegateType selectedDelegate, std::vector<armnn::BackendId> backend)
void RunInference(Settings* settings, DelegateType selectedDelegate,
std::vector<armnn::BackendId> backend)
{
ops::builtin::BuiltinOpResolver resolver;
std::unique_ptr<FlatBufferModel> model;
Expand Down Expand Up @@ -433,7 +433,7 @@ int Main(int argc, char** argv)
/* Print to standard output, including debug, up to specified level */
armnn::ConfigureLogging(true, true, armnnLogLevel);

RunInference(&settings, armnnLogLevel, selectedDelegate, backend);
RunInference(&settings, selectedDelegate, backend);
return 0;
}

Expand Down

0 comments on commit f133c9d

Please sign in to comment.