mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
build: added base benchmark base
This commit is contained in:
parent
4ded555cc5
commit
5953634fb4
2 changed files with 240 additions and 163 deletions
339
.github/workflows/benchmark-dev.yml
vendored
339
.github/workflows/benchmark-dev.yml
vendored
|
@ -90,181 +90,194 @@ jobs:
|
||||||
git push
|
git push
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
unix:
|
|
||||||
name: ${{matrix.os}}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, macos-latest]
|
|
||||||
bench:
|
|
||||||
- {
|
|
||||||
script: "run-benchmarks",
|
|
||||||
timeout: 12,
|
|
||||||
title: "Luau Benchmarks",
|
|
||||||
cachegrindTitle: "Performance",
|
|
||||||
cachegrindIterCount: 20,
|
|
||||||
}
|
|
||||||
benchResultsRepo:
|
|
||||||
- { name: "luau-lang/benchmark-data", branch: "main" }
|
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
|
||||||
- name: Checkout Luau repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Build Luau
|
|
||||||
run: make config=release luau luau-analyze
|
|
||||||
|
|
||||||
- uses: actions/setup-python@v3
|
|
||||||
with:
|
|
||||||
python-version: "3.9"
|
|
||||||
architecture: "x64"
|
|
||||||
|
|
||||||
- name: Install python dependencies
|
|
||||||
run: |
|
|
||||||
python -m pip install requests
|
|
||||||
python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
|
|
||||||
|
|
||||||
- name: Run benchmark
|
|
||||||
run: |
|
|
||||||
python bench/bench.py | tee ${{ matrix.bench.script }}-output.txt
|
|
||||||
|
|
||||||
- name: Install valgrind
|
|
||||||
if: matrix.os == 'ubuntu-latest'
|
|
||||||
run: |
|
|
||||||
sudo apt-get install valgrind
|
|
||||||
|
|
||||||
- name: Run ${{ matrix.bench.title }} (Cold Cachegrind)
|
|
||||||
if: matrix.os == 'ubuntu-latest'
|
|
||||||
run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/bench.py "${{ matrix.bench.cachegrindTitle}}Cold" 1 | tee -a ${{ matrix.bench.script }}-output.txt
|
|
||||||
|
|
||||||
- name: Run ${{ matrix.bench.title }} (Warm Cachegrind)
|
|
||||||
if: matrix.os == 'ubuntu-latest'
|
|
||||||
run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/bench.py "${{ matrix.bench.cachegrindTitle }}" ${{ matrix.bench.cachegrindIterCount }} | tee -a ${{ matrix.bench.script }}-output.txt
|
|
||||||
|
|
||||||
- name: Checkout Benchmark Results repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
repository: ${{ matrix.benchResultsRepo.name }}
|
|
||||||
ref: ${{ matrix.benchResultsRepo.branch }}
|
|
||||||
token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
|
||||||
path: "./gh-pages"
|
|
||||||
|
|
||||||
- name: Store ${{ matrix.bench.title }} result
|
|
||||||
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
|
||||||
with:
|
|
||||||
name: ${{ matrix.bench.title }}
|
|
||||||
tool: "benchmarkluau"
|
|
||||||
output-file-path: ./${{ matrix.bench.script }}-output.txt
|
|
||||||
external-data-json-path: ./gh-pages/dev/bench/data-${{ matrix.os }}.json
|
|
||||||
github-token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Store ${{ matrix.bench.title }} result (CacheGrind)
|
|
||||||
if: matrix.os == 'ubuntu-latest'
|
|
||||||
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
|
||||||
with:
|
|
||||||
name: ${{ matrix.bench.title }} (CacheGrind)
|
|
||||||
tool: "roblox"
|
|
||||||
output-file-path: ./${{ matrix.bench.script }}-output.txt
|
|
||||||
external-data-json-path: ./gh-pages/dev/bench/data-${{ matrix.os }}.json
|
|
||||||
github-token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Push benchmark results
|
- name: Push benchmark results
|
||||||
if: github.event_name == 'push'
|
if: github.event_name == 'push'
|
||||||
run: |
|
uses: ./.github/workflows/push-results
|
||||||
echo "Pushing benchmark results..."
|
with:
|
||||||
cd gh-pages
|
repository: ${{ matrix.benchResultsRepo.name }}
|
||||||
git config user.name github-actions
|
branch: ${{ matrix.benchResultsRepo.branch }}
|
||||||
git config user.email github@users.noreply.github.com
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
git add ./dev/bench/data-${{ matrix.os }}.json
|
path: "./gh-pages"
|
||||||
git commit -m "Add benchmarks results for ${{ github.sha }}"
|
bench_name: "${{ matrix.bench.title }} (Windows ${{matrix.arch}})"
|
||||||
git push
|
bench_tool: "benchmarkluau"
|
||||||
cd ..
|
bench_output_file_path: "./${{ matrix.bench.script }}-output.txt"
|
||||||
|
bench_external_data_json_path: "./gh-pages/dev/bench/data-${{ matrix.os }}.json"
|
||||||
|
|
||||||
static-analysis:
|
# unix:
|
||||||
name: luau-analyze
|
# name: ${{matrix.os}}
|
||||||
strategy:
|
# strategy:
|
||||||
fail-fast: false
|
# fail-fast: false
|
||||||
matrix:
|
# matrix:
|
||||||
os: [ubuntu-latest]
|
# os: [ubuntu-latest, macos-latest]
|
||||||
bench:
|
# bench:
|
||||||
- {
|
# - {
|
||||||
script: "run-analyze",
|
# script: "run-benchmarks",
|
||||||
timeout: 12,
|
# timeout: 12,
|
||||||
title: "Luau Analyze",
|
# title: "Luau Benchmarks",
|
||||||
cachegrindTitle: "Performance",
|
# cachegrindTitle: "Performance",
|
||||||
cachegrindIterCount: 20,
|
# cachegrindIterCount: 20,
|
||||||
}
|
# }
|
||||||
benchResultsRepo:
|
# benchResultsRepo:
|
||||||
- { name: "luau-lang/benchmark-data", branch: "main" }
|
# - { name: "luau-lang/benchmark-data", branch: "main" }
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
token: "${{ secrets.BENCH_GITHUB_TOKEN }}"
|
|
||||||
|
|
||||||
- name: Build Luau
|
# runs-on: ${{ matrix.os }}
|
||||||
run: make config=release luau luau-analyze
|
# steps:
|
||||||
|
# - name: Checkout Luau repository
|
||||||
|
# uses: actions/checkout@v3
|
||||||
|
|
||||||
- uses: actions/setup-python@v4
|
# - name: Build Luau
|
||||||
with:
|
# run: make config=release luau luau-analyze
|
||||||
python-version: "3.9"
|
|
||||||
architecture: "x64"
|
|
||||||
|
|
||||||
- name: Install python dependencies
|
# - uses: actions/setup-python@v3
|
||||||
run: |
|
# with:
|
||||||
sudo pip install requests numpy scipy matplotlib ipython jupyter pandas sympy nose
|
# python-version: "3.9"
|
||||||
|
# architecture: "x64"
|
||||||
|
|
||||||
- name: Install valgrind
|
# - name: Install python dependencies
|
||||||
run: |
|
# run: |
|
||||||
sudo apt-get install valgrind
|
# python -m pip install requests
|
||||||
|
# python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
|
||||||
|
|
||||||
- name: Run Luau Analyze on static file
|
# - name: Run benchmark
|
||||||
run: sudo python ./bench/measure_time.py ./build/release/luau-analyze bench/other/LuauPolyfillMap.lua | tee ${{ matrix.bench.script }}-output.txt
|
# run: |
|
||||||
|
# python bench/bench.py | tee ${{ matrix.bench.script }}-output.txt
|
||||||
|
|
||||||
- name: Run ${{ matrix.bench.title }} (Cold Cachegrind)
|
# - name: Install valgrind
|
||||||
run: sudo ./scripts/run-with-cachegrind.sh python ./bench/measure_time.py "${{ matrix.bench.cachegrindTitle}}Cold" 1 ./build/release/luau-analyze bench/other/LuauPolyfillMap.lua | tee -a ${{ matrix.bench.script }}-output.txt
|
# if: matrix.os == 'ubuntu-latest'
|
||||||
|
# run: |
|
||||||
|
# sudo apt-get install valgrind
|
||||||
|
|
||||||
- name: Run ${{ matrix.bench.title }} (Warm Cachegrind)
|
# - name: Run ${{ matrix.bench.title }} (Cold Cachegrind)
|
||||||
run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/measure_time.py "${{ matrix.bench.cachegrindTitle}}" 1 ./build/release/luau-analyze bench/other/LuauPolyfillMap.lua | tee -a ${{ matrix.bench.script }}-output.txt
|
# if: matrix.os == 'ubuntu-latest'
|
||||||
|
# run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/bench.py "${{ matrix.bench.cachegrindTitle}}Cold" 1 | tee -a ${{ matrix.bench.script }}-output.txt
|
||||||
|
|
||||||
- name: Checkout Benchmark Results repository
|
# - name: Run ${{ matrix.bench.title }} (Warm Cachegrind)
|
||||||
uses: actions/checkout@v3
|
# if: matrix.os == 'ubuntu-latest'
|
||||||
with:
|
# run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/bench.py "${{ matrix.bench.cachegrindTitle }}" ${{ matrix.bench.cachegrindIterCount }} | tee -a ${{ matrix.bench.script }}-output.txt
|
||||||
repository: ${{ matrix.benchResultsRepo.name }}
|
|
||||||
ref: ${{ matrix.benchResultsRepo.branch }}
|
|
||||||
token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
|
||||||
path: "./gh-pages"
|
|
||||||
|
|
||||||
- name: Store ${{ matrix.bench.title }} result
|
# - name: Checkout Benchmark Results repository
|
||||||
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
# uses: actions/checkout@v3
|
||||||
with:
|
# with:
|
||||||
name: ${{ matrix.bench.title }}
|
# repository: ${{ matrix.benchResultsRepo.name }}
|
||||||
tool: "benchmarkluau"
|
# ref: ${{ matrix.benchResultsRepo.branch }}
|
||||||
|
# token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
||||||
|
# path: "./gh-pages"
|
||||||
|
|
||||||
gh-pages-branch: "main"
|
# - name: Store ${{ matrix.bench.title }} result
|
||||||
output-file-path: ./${{ matrix.bench.script }}-output.txt
|
# uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
external-data-json-path: ./gh-pages/dev/bench/data-${{ matrix.os }}.json
|
# with:
|
||||||
github-token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
# name: ${{ matrix.bench.title }}
|
||||||
|
# tool: "benchmarkluau"
|
||||||
|
# output-file-path: ./${{ matrix.bench.script }}-output.txt
|
||||||
|
# external-data-json-path: ./gh-pages/dev/bench/data-${{ matrix.os }}.json
|
||||||
|
# github-token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Store ${{ matrix.bench.title }} result (CacheGrind)
|
# - name: Store ${{ matrix.bench.title }} result (CacheGrind)
|
||||||
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
# if: matrix.os == 'ubuntu-latest'
|
||||||
with:
|
# uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
name: ${{ matrix.bench.title }}
|
# with:
|
||||||
tool: "roblox"
|
# name: ${{ matrix.bench.title }} (CacheGrind)
|
||||||
gh-pages-branch: "main"
|
# tool: "roblox"
|
||||||
output-file-path: ./${{ matrix.bench.script }}-output.txt
|
# output-file-path: ./${{ matrix.bench.script }}-output.txt
|
||||||
external-data-json-path: ./gh-pages/dev/bench/data-${{ matrix.os }}.json
|
# external-data-json-path: ./gh-pages/dev/bench/data-${{ matrix.os }}.json
|
||||||
github-token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
# github-token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Push benchmark results
|
# - name: Push benchmark results
|
||||||
if: github.event_name == 'push'
|
# if: github.event_name == 'push'
|
||||||
run: |
|
# run: |
|
||||||
echo "Pushing benchmark results..."
|
# echo "Pushing benchmark results..."
|
||||||
cd gh-pages
|
# cd gh-pages
|
||||||
git config user.name github-actions
|
# git config user.name github-actions
|
||||||
git config user.email github@users.noreply.github.com
|
# git config user.email github@users.noreply.github.com
|
||||||
git add ./dev/bench/data-${{ matrix.os }}.json
|
# git add ./dev/bench/data-${{ matrix.os }}.json
|
||||||
git commit -m "Add benchmarks results for ${{ github.sha }}"
|
# git commit -m "Add benchmarks results for ${{ github.sha }}"
|
||||||
git push
|
# git push
|
||||||
cd ..
|
# cd ..
|
||||||
|
|
||||||
|
# static-analysis:
|
||||||
|
# name: luau-analyze
|
||||||
|
# strategy:
|
||||||
|
# fail-fast: false
|
||||||
|
# matrix:
|
||||||
|
# os: [ubuntu-latest]
|
||||||
|
# bench:
|
||||||
|
# - {
|
||||||
|
# script: "run-analyze",
|
||||||
|
# timeout: 12,
|
||||||
|
# title: "Luau Analyze",
|
||||||
|
# cachegrindTitle: "Performance",
|
||||||
|
# cachegrindIterCount: 20,
|
||||||
|
# }
|
||||||
|
# benchResultsRepo:
|
||||||
|
# - { name: "luau-lang/benchmark-data", branch: "main" }
|
||||||
|
# runs-on: ${{ matrix.os }}
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v3
|
||||||
|
# with:
|
||||||
|
# token: "${{ secrets.BENCH_GITHUB_TOKEN }}"
|
||||||
|
|
||||||
|
# - name: Build Luau
|
||||||
|
# run: make config=release luau luau-analyze
|
||||||
|
|
||||||
|
# - uses: actions/setup-python@v4
|
||||||
|
# with:
|
||||||
|
# python-version: "3.9"
|
||||||
|
# architecture: "x64"
|
||||||
|
|
||||||
|
# - name: Install python dependencies
|
||||||
|
# run: |
|
||||||
|
# sudo pip install requests numpy scipy matplotlib ipython jupyter pandas sympy nose
|
||||||
|
|
||||||
|
# - name: Install valgrind
|
||||||
|
# run: |
|
||||||
|
# sudo apt-get install valgrind
|
||||||
|
|
||||||
|
# - name: Run Luau Analyze on static file
|
||||||
|
# run: sudo python ./bench/measure_time.py ./build/release/luau-analyze bench/other/LuauPolyfillMap.lua | tee ${{ matrix.bench.script }}-output.txt
|
||||||
|
|
||||||
|
# - name: Run ${{ matrix.bench.title }} (Cold Cachegrind)
|
||||||
|
# run: sudo ./scripts/run-with-cachegrind.sh python ./bench/measure_time.py "${{ matrix.bench.cachegrindTitle}}Cold" 1 ./build/release/luau-analyze bench/other/LuauPolyfillMap.lua | tee -a ${{ matrix.bench.script }}-output.txt
|
||||||
|
|
||||||
|
# - name: Run ${{ matrix.bench.title }} (Warm Cachegrind)
|
||||||
|
# run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/measure_time.py "${{ matrix.bench.cachegrindTitle}}" 1 ./build/release/luau-analyze bench/other/LuauPolyfillMap.lua | tee -a ${{ matrix.bench.script }}-output.txt
|
||||||
|
|
||||||
|
# - name: Checkout Benchmark Results repository
|
||||||
|
# uses: actions/checkout@v3
|
||||||
|
# with:
|
||||||
|
# repository: ${{ matrix.benchResultsRepo.name }}
|
||||||
|
# ref: ${{ matrix.benchResultsRepo.branch }}
|
||||||
|
# token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
||||||
|
# path: "./gh-pages"
|
||||||
|
|
||||||
|
# - name: Store ${{ matrix.bench.title }} result
|
||||||
|
# uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
|
# with:
|
||||||
|
# name: ${{ matrix.bench.title }}
|
||||||
|
# tool: "benchmarkluau"
|
||||||
|
|
||||||
|
# gh-pages-branch: "main"
|
||||||
|
# output-file-path: ./${{ matrix.bench.script }}-output.txt
|
||||||
|
# external-data-json-path: ./gh-pages/dev/bench/data-${{ matrix.os }}.json
|
||||||
|
# github-token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# - name: Store ${{ matrix.bench.title }} result (CacheGrind)
|
||||||
|
# uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
|
# with:
|
||||||
|
# name: ${{ matrix.bench.title }}
|
||||||
|
# tool: "roblox"
|
||||||
|
# gh-pages-branch: "main"
|
||||||
|
# output-file-path: ./${{ matrix.bench.script }}-output.txt
|
||||||
|
# external-data-json-path: ./gh-pages/dev/bench/data-${{ matrix.os }}.json
|
||||||
|
# github-token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# - name: Push benchmark results
|
||||||
|
# if: github.event_name == 'push'
|
||||||
|
# run: |
|
||||||
|
# echo "Pushing benchmark results..."
|
||||||
|
# cd gh-pages
|
||||||
|
# git config user.name github-actions
|
||||||
|
# git config user.email github@users.noreply.github.com
|
||||||
|
# git add ./dev/bench/data-${{ matrix.os }}.json
|
||||||
|
# git commit -m "Add benchmarks results for ${{ github.sha }}"
|
||||||
|
# git push
|
||||||
|
# cd ..
|
||||||
|
|
64
.github/workflows/push-results/action.yml
vendored
Normal file
64
.github/workflows/push-results/action.yml
vendored
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
name: Checkout & push results
|
||||||
|
description: Checkout a given repo and push results to GitHub
|
||||||
|
inputs:
|
||||||
|
repository:
|
||||||
|
required: true
|
||||||
|
# type: string
|
||||||
|
description: The benchmark results repository to check out
|
||||||
|
branch:
|
||||||
|
required: true
|
||||||
|
# type: string
|
||||||
|
description: The benchmark results repository's branch to check out
|
||||||
|
token:
|
||||||
|
required: true
|
||||||
|
# type: string
|
||||||
|
description: The GitHub token to use for pushing results
|
||||||
|
path:
|
||||||
|
required: true
|
||||||
|
# type: string
|
||||||
|
description: The path to check out the results repository to
|
||||||
|
bench_name:
|
||||||
|
required: true
|
||||||
|
# type: string
|
||||||
|
bench_tool:
|
||||||
|
required: true
|
||||||
|
# type: string
|
||||||
|
bench_output_file_path:
|
||||||
|
required: true
|
||||||
|
# type: string
|
||||||
|
bench_external_data_json_path:
|
||||||
|
required: true
|
||||||
|
# type: string
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: "composite"
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
shell: bash
|
||||||
|
with:
|
||||||
|
repository: ${{ inputs.repository }}
|
||||||
|
ref: ${{ inputs.branch }}
|
||||||
|
token: ${{ inputs.token }}
|
||||||
|
path: "./gh-pages"
|
||||||
|
|
||||||
|
- name: Store results
|
||||||
|
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
|
shell: bash
|
||||||
|
with:
|
||||||
|
name: ${{ inputs.bench_name }}
|
||||||
|
tool: ${{ inputs.bench_tool }}
|
||||||
|
output-file-path: ${{ inputs.bench_output_file_path }}
|
||||||
|
external-data-json-path: ${{ inputs.bench_external_data_json_path }}
|
||||||
|
|
||||||
|
- name: Push benchmark results
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "Pushing benchmark results..."
|
||||||
|
cd gh-pages
|
||||||
|
git config user.name github-actions
|
||||||
|
git config user.email github@users.noreply.github.com
|
||||||
|
git add *.json
|
||||||
|
git commit -m "Add benchmarks results for ${{ github.sha }}"
|
||||||
|
git push
|
||||||
|
cd ..
|
Loading…
Add table
Reference in a new issue