mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 19:30:54 +01:00
Adjust benchmark runs to use config=profile and new file names
This commit is contained in:
parent
39bcf23cd6
commit
f1928ddade
1 changed files with 29 additions and 11 deletions
40
.github/workflows/benchmark.yml
vendored
40
.github/workflows/benchmark.yml
vendored
|
@ -13,12 +13,11 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
callgrind:
|
callgrind:
|
||||||
name: callgrind ${{ matrix.compiler }}
|
name: callgrind
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-22.04]
|
os: [ubuntu-22.04]
|
||||||
compiler: [g++]
|
|
||||||
benchResultsRepo:
|
benchResultsRepo:
|
||||||
- { name: "luau-lang/benchmark-data", branch: "main" }
|
- { name: "luau-lang/benchmark-data", branch: "main" }
|
||||||
|
|
||||||
|
@ -31,12 +30,23 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install valgrind
|
sudo apt-get install valgrind
|
||||||
|
|
||||||
- name: Build Luau
|
- name: Build Luau (gcc)
|
||||||
run: CXX=${{ matrix.compiler }} make config=release CALLGRIND=1 luau luau-analyze
|
|
||||||
|
|
||||||
- name: Run benchmark (bench)
|
|
||||||
run: |
|
run: |
|
||||||
python bench/bench.py --callgrind --vm "./luau -O2" | tee -a bench-output.txt
|
CXX=g++ make config=profile luau
|
||||||
|
cp luau luau-gcc
|
||||||
|
|
||||||
|
- name: Build Luau (clang)
|
||||||
|
run: |
|
||||||
|
make config=profile clean
|
||||||
|
CXX=clang++ make config=profile luau luau-analyze
|
||||||
|
|
||||||
|
- name: Run benchmark (bench-gcc)
|
||||||
|
run: |
|
||||||
|
python bench/bench.py --callgrind --vm "./luau-gcc -O2" | tee -a bench-gcc-output.txt
|
||||||
|
|
||||||
|
- name: Run benchmark (bench-clang)
|
||||||
|
run: |
|
||||||
|
python bench/bench.py --callgrind --vm "./luau -O2" | tee -a bench-clang-output.txt
|
||||||
|
|
||||||
- name: Run benchmark (analyze)
|
- name: Run benchmark (analyze)
|
||||||
run: |
|
run: |
|
||||||
|
@ -68,13 +78,21 @@ jobs:
|
||||||
token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
token: ${{ secrets.BENCH_GITHUB_TOKEN }}
|
||||||
path: "./gh-pages"
|
path: "./gh-pages"
|
||||||
|
|
||||||
- name: Store results (bench)
|
- name: Store results (bench-clang)
|
||||||
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
with:
|
with:
|
||||||
name: callgrind ${{ matrix.compiler }}
|
name: callgrind clang
|
||||||
tool: "benchmarkluau"
|
tool: "benchmarkluau"
|
||||||
output-file-path: ./bench-output.txt
|
output-file-path: ./bench-clang-output.txt
|
||||||
external-data-json-path: ./gh-pages/bench.json
|
external-data-json-path: ./gh-pages/bench-clang.json
|
||||||
|
|
||||||
|
- name: Store results (bench-gcc)
|
||||||
|
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
|
with:
|
||||||
|
name: callgrind gcc
|
||||||
|
tool: "benchmarkluau"
|
||||||
|
output-file-path: ./bench-gcc-output.txt
|
||||||
|
external-data-json-path: ./gh-pages/bench-gcc.json
|
||||||
|
|
||||||
- name: Store results (analyze)
|
- name: Store results (analyze)
|
||||||
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
uses: Roblox/rhysd-github-action-benchmark@v-luau
|
||||||
|
|
Loading…
Add table
Reference in a new issue