Skip to content

Commit

Permalink
Merge pull request GATEOverflow#135 from GATEOverflow/mlperf-inference
Browse files Browse the repository at this point in the history
Merge from go
  • Loading branch information
arjunsuresh authored Jul 19, 2024
2 parents 3955da1 + 98dfb2e commit ef2193e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions automation/script/module_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1077,6 +1077,10 @@ def doc(i):
r = utils.save_txt(output_file, s)
if r['return']>0: return r

out_docs_file = os.path.join("..", "docs", "scripts", category, alias, "index.md")
r = utils.save_txt(out_docs_file, s)
if r['return']>0: return r

return {'return':0}


Expand Down
1 change: 0 additions & 1 deletion script/app-mlperf-inference-mlcommons-python/_cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,6 @@ variations:
CM_MLPERF_MODEL_SKIP_BATCHING: true
deps:
- tags: get,generic-python-lib,_package.pydantic
version_max: "1.10.9"
- tags: get,generic-python-lib,_tokenization
- tags: get,generic-python-lib,_six
- tags: get,generic-python-lib,_package.absl-py
Expand Down
3 changes: 2 additions & 1 deletion script/get-mlperf-inference-utils/mlperf_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,9 @@ def get_result_string(version, model, scenario, result_path, has_power, sub_res,
return result_string, result

def get_result_table(results):


headers = ["Model", "Scenario", "Accuracy", "QPS", "Latency (in ms)", "Power Efficiency (in samples/J)", "TEST01", "TEST05", "TEST04"]
headers = ["Model", "Scenario", "Accuracy", "Throughput", "Latency (in ms)", "Power Efficiency (in samples/J)", "TEST01", "TEST05", "TEST04"]
table = []
for model in results:
for scenario in results[model]:
Expand Down

0 comments on commit ef2193e

Please sign in to comment.