Stop using old-style simd_shuffle
#48
Workflow file for this run
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: benchmarks | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
x86_64-unknown-linux-gnu: | |
uses: ./.github/workflows/run-ci-script.yml | |
with: | |
target: x86_64-unknown-linux-gnu | |
setup_script: ci/setup_benchmarks.sh | |
script: ci/benchmark.sh | |
norun: 1 | |
verify: 1 | |
# FIXME: figure out how to add downloaded ispc to PATH | |
# features: ispc | |
x86_64-apple-darwin: | |
uses: ./.github/workflows/run-ci-script.yml | |
with: | |
target: x86_64-apple-darwin | |
runner: macos-latest | |
setup_script: ci/setup_benchmarks.sh | |
script: ci/benchmark.sh | |
norun: 1 | |
verify: 1 | |
# FIXME: figure out how to add downloaded ispc to PATH | |
# features: ispc |