FEA ridge benchmarks #78
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check sanity of benchmark results file | |
on: | |
pull_request: | |
jobs: | |
benchmarks_file_sanity_checks: | |
name: Run check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install pre-requisites | |
run: pip install numpy pandas | |
- name: Check sanity of benchmark files | |
run: | | |
python ./benchmarks/kmeans/consolidate_result_csv.py ./benchmarks/kmeans/results.csv --check-csv | |
python ./benchmarks/pca/consolidate_result_csv.py ./benchmarks/pca/results.csv --check-csv | |
python ./benchmarks/ridge/consolidate_result_csv.py ./benchmarks/ridge/results.csv --check-csv |