Performance Test - Dispatch #4
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: Performance Test - Dispatch | |
on: | |
workflow_dispatch: | |
inputs: | |
dataset: | |
type: choice | |
description: "Dataset to benchmark" | |
required: true | |
default: "inat2017" | |
options: ["all", "inat2017", "random", "grid", "cluster"] | |
count: | |
type: number | |
description: "Number of points to benchmark" | |
required: true | |
default: 100000 | |
jobs: | |
performance-all: | |
strategy: | |
matrix: | |
dataset: ["inat2017", "random", "grid", "cluster"] | |
name: Performance Test - All - ${{ matrix.dataset }} | |
runs-on: ubuntu-latest | |
if: inputs.dataset == 'all' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup environment | |
run: ./setup.sh | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
- name: Run benchmark | |
run: npm run start -- -t ${{ matrix.dataset }} -c ${{ inputs.count }} | |
performance-single: | |
name: Performance Test - ${{ inputs.dataset }} | |
runs-on: ubuntu-latest | |
if: inputs.dataset != null && inputs.dataset != 'all' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup environment | |
run: ./setup.sh | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
- name: Run benchmark | |
run: npm run start -- -t ${{ inputs.dataset }} -c ${{ inputs.count }} |