chore(gpu): limit base log to 32 because of the monomial degree type #1266
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
# Sync repos | |
name: Sync repos | |
on: | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
jobs: | |
sync-repo: | |
if: ${{ github.repository == 'zama-ai/tfhe-rs' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
with: | |
fetch-depth: 0 | |
- name: git-sync | |
uses: wei/git-sync@55c6b63b4f21607da0e9877ca9b4d11a29fc6d83 | |
with: | |
source_repo: "zama-ai/tfhe-rs" | |
source_branch: "main" | |
destination_repo: "https://${{ secrets.BOT_USERNAME }}:${{ secrets.FHE_ACTIONS_TOKEN }}@github.com/${{ secrets.SYNC_DEST_REPO }}" | |
destination_branch: "main" | |
- name: git-sync tags | |
uses: wei/git-sync@55c6b63b4f21607da0e9877ca9b4d11a29fc6d83 | |
with: | |
source_repo: "zama-ai/tfhe-rs" | |
source_branch: "refs/tags/*" | |
destination_repo: "https://${{ secrets.BOT_USERNAME }}:${{ secrets.FHE_ACTIONS_TOKEN }}@github.com/${{ secrets.SYNC_DEST_REPO }}" | |
destination_branch: "refs/tags/*" |