Skip to content

Commit f9dea1b

Browse files
authored
[Bench] Fix validation standards for compare.py (#19689)
Due to the performance BMG machine being taken down for intel/llvm recently, there is a gap in the data stored in intel/llvm-ci-perf-results. In preparation for bringing up the BMG machine next week, I have swapped out the data for the data from unified-runtime CI. In order for the data in unified-runtime CI to work, we need to relax the validation standards in compare.py.
1 parent 788d8d3 commit f9dea1b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

devops/scripts/benchmarks/compare.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,9 @@ def get_result_paths() -> list[str]:
112112
def validate_benchmark_result(result: BenchmarkRun) -> bool:
113113
"""
114114
Returns True if result file:
115-
- Was ran on the target machine/hostname specified
116-
- Sanity check: ensure metadata are all expected values:
117115
- Date is truly before cutoff timestamp
118116
- Name truly matches up with specified result_name
119117
"""
120-
if result.hostname != hostname:
121-
return False
122118
if result.name != result_name:
123119
log.warning(
124120
f"Result file {result_path} does not match specified result name {result.name}."

0 commit comments

Comments
 (0)