-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
97 additions
and
1 deletion.
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,58 @@ | ||
name: Haskell benchmarks | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
get-inputs: | ||
uses: ephemient/aoc2023/.github/workflows/get-inputs.yml@main | ||
secrets: | ||
SESSION: ${{ secrets.SESSION }} | ||
|
||
build: | ||
needs: [ get-inputs ] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: gh-docs | ||
path: gh-docs | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: inputs | ||
path: inputs | ||
- uses: haskell-actions/setup@v2 | ||
id: setup | ||
with: | ||
ghc-version: 9.4.7 | ||
- run: | | ||
cabal configure --enable-tests --enable-benchmarks | ||
cabal build all --dry-run | ||
working-directory: hs | ||
- uses: actions/cache/restore@v3 | ||
id: cache | ||
env: | ||
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-cabal-${{ steps.setup.outputs.cabal-version }} | ||
with: | ||
path: ${{ steps.setup.outputs.cabal-store }} | ||
key: ${{ env.key }}-plan-${{ hashFiles('hs/dist-newstyle/cache/plan.json') }} | ||
restore-keys: ${{ env.key }}- | ||
- run: cabal build all --only-dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
working-directory: hs | ||
- uses: actions/cache/save@v3 | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
with: | ||
path: ${{ steps.setup.outputs.cabal-store }} | ||
key: ${{ steps.cache.outputs.cache-primary-key }} | ||
- run: cabal bench bench:aoc2023-bench --benchmark-options='-o ${{ github.workspace }}/gh-docs/aoc2023-bench.html' | ||
env: | ||
AOC2023_DATADIR: ${{ github.workspace }}/inputs | ||
working-directory: hs | ||
- uses: EndBug/add-and-commit@v9 | ||
with: | ||
cwd: gh-docs | ||
add: aoc2023-bench.html | ||
message: 'Haskell Criterion ${{ github.sha }}' |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
module Main (main) where | ||
|
||
import Criterion.Main (bench, bgroup, defaultMain, env, nf) | ||
import Data.Foldable (find) | ||
import Data.Maybe (fromMaybe) | ||
import Data.Text (Text) | ||
import qualified Data.Text.IO as TIO (readFile) | ||
import qualified Day1 (part1, part2) | ||
import System.Environment (lookupEnv) | ||
import System.FilePath (combine) | ||
|
||
getDayInput :: Int -> IO Text | ||
getDayInput i = do | ||
dataDir <- fromMaybe "." . find (not . null) <$> lookupEnv "AOC2023_DATADIR" | ||
TIO.readFile . combine dataDir $ "day" ++ show i ++ ".txt" | ||
|
||
main :: IO () | ||
main = defaultMain | ||
[ env (getDayInput 1) $ \input -> bgroup "Day 1" | ||
[ bench "part 1" $ nf Day1.part1 input | ||
, bench "part 2" $ nf Day1.part2 input | ||
] | ||
] |