mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-07 17:15:29 +00:00
Metrics - llama-2 - Add package name and version to engine of onnxruntime (#19325)
### Description <!-- Describe your changes. --> ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. -->
This commit is contained in:
parent
1bdd7d9499
commit
8a2646ce60
1 changed files with 1 additions and 1 deletions
|
|
@ -253,7 +253,7 @@ def save_results(results, filename):
|
|||
# Save results to csv with standard format
|
||||
records = []
|
||||
for _, row in df.iterrows():
|
||||
if row["Engine"] == "optimum-ort":
|
||||
if row["Engine"] in ["optimum-ort", "onnxruntime"]:
|
||||
record = BenchmarkRecord(
|
||||
row["Model Name"], row["Precision"], "onnxruntime", row["Device"], ort_pkg_name, ort_pkg_version
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue