Skip to content

Commit

Permalink
Fix function name mismatch error
Browse files Browse the repository at this point in the history
Signed-off-by: CryptoSalamander <[email protected]>
  • Loading branch information
CryptoSalamander authored and rajeevsrao committed Feb 15, 2021
1 parent 0a80821 commit 13f7441
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/opensource/trtexec/prn_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@



def combine_descriptions(prolog, features, descriptions):
def combineDescriptions(prolog, features, descriptions):
''' Combine features with their descriptions '''

fullDescription = prolog
Expand Down
2 changes: 1 addition & 1 deletion samples/opensource/trtexec/tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
descriptions = ['start input', 'end input', 'start compute', 'end compute', 'start output',
'end output', 'input', 'compute', 'output', 'latency', 'end to end latency']

metricsDescription = pu.combine_descriptions('Possible metrics (all in ms) are:',
metricsDescription = pu.combineDescriptions('Possible metrics (all in ms) are:',
allMetrics, descriptions)


Expand Down

0 comments on commit 13f7441

Please sign in to comment.