-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more benchmarks to website & searching
- Loading branch information
Showing
13 changed files
with
227 additions
and
14,532 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Add all the benchmarks to a single json file in a list. | ||
|
||
out_dir=$1 | ||
name=${2:-"benchmarks"} | ||
|
||
buffer="" | ||
|
||
for file in particular/benches/results/*-*-*.json; do | ||
buffer+=$(cat "$file") | ||
buffer+="," | ||
done | ||
|
||
echo "[${buffer%?}]" > $out_dir/$name.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,11 +23,15 @@ jobs: | |
with: | ||
version: "0.2.89" | ||
|
||
- name: Build Examples | ||
- name: Deploy Benchmarks | ||
run: | | ||
bash ./.github/scripts/deploy_benchmarks.sh website/content/benchmarks | ||
- name: Deploy Examples | ||
run: | | ||
./.github/scripts/deploy_showcase.sh | ||
- name: Deploy | ||
- name: Deploy Site | ||
uses: shalzz/[email protected] | ||
env: | ||
BUILD_DIR: website | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ build_docs.bat | |
|
||
website/public | ||
website/content/demos/* | ||
website/content/benchmarks/*.json |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
+++ | ||
title = "Benchmarks" | ||
template = "benchmarks.html" | ||
sort_by = "title" | ||
|
||
[extra.colour_map] | ||
"gpu::BruteForce" = "#FF0000" | ||
"parallel::BarnesHut::0.3" = "#00CC00" | ||
"parallel::BarnesHut::0.7" = "#B8CC00" | ||
"parallel::BruteForceSIMD<4>" = "#FF6400" | ||
"parallel::BruteForceSIMD<8>" = "#FF6400" | ||
"parallel::BruteForceScalar" = "#0080FF" | ||
"sequential::BarnesHut::0.3" = "#008E00" | ||
"sequential::BarnesHut::0.7" = "#808E00" | ||
"sequential::BruteForcePairs" = "#007575" | ||
"sequential::BruteForceSIMD<4>" = "#993C00" | ||
"sequential::BruteForceSIMD<8>" = "#993C00" | ||
"sequential::BruteForceScalar" = "#004C99" | ||
|
||
+++ |
Oops, something went wrong.