Alphatensor4x4 and Matmul4x4 bril benchmarks tested against numpy #186
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
on: | |
push: | |
paths: | |
- 'docs/**' | |
pull_request: | |
paths: | |
- 'docs/**' | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup mdBook | |
uses: peaceiris/actions-mdbook@v1 | |
with: | |
mdbook-version: 'latest' | |
- name: mdbook | |
run: mdbook build | |
- name: rsync | |
if: ${{github.event_name=='push' && github.ref=='refs/heads/main' && github.repository_owner == 'sampsyo'}} | |
env: | |
DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }} | |
DEPLOY_PORT: ${{ secrets.DEPLOY_PORT }} | |
DEPLOY_USER: ${{ secrets.DEPLOY_USER }} | |
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | |
DEPLOY_KNOWN_HOSTS: ${{ secrets.DEPLOY_KNOWN_HOSTS }} | |
DEPLOY_SRC: ./book/ | |
DEPLOY_DEST: sync/bril-book | |
DEPLOY_2_HOST: courses | |
DEPLOY_2_DEST: coursewww/capra.cs.cornell.edu/htdocs/bril | |
run: | | |
echo "$DEPLOY_KEY" > pk | |
echo "$DEPLOY_KNOWN_HOSTS" > kh | |
chmod 600 pk | |
rsync --compress --recursive --checksum --itemize-changes --delete \ | |
-e "ssh -p \"$DEPLOY_PORT\" -i pk -o 'UserKnownHostsFile kh'" \ | |
$DEPLOY_SRC $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_DEST | |
ssh -p $DEPLOY_PORT -i pk -o 'UserKnownHostsFile kh' \ | |
$DEPLOY_USER@$DEPLOY_HOST \ | |
rsync --compress --recursive --checksum --itemize-changes \ | |
--delete -e ssh --perms --chmod=Du=rwx,Dgo=rx,Fu=rw,Fog=r \ | |
$DEPLOY_DEST/ $DEPLOY_2_HOST:$DEPLOY_2_DEST |