[PyTorch] Make FP8 MHA work with RoPE when CP is on (#1297) #707
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
# Copyright (c) 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
# | |
# See LICENSE for license information. | |
# A workflow to deploy the nightly version of TE documentation to GitHub Pages | |
name: Deploy nightly docs | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build: | |
uses: ./.github/workflows/docs.yml | |
prepare: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v4.1.7 | |
with: | |
name: "te_docs" | |
path: "html" | |
- name: Prepare for pages | |
uses: actions/upload-pages-artifact@v1.0.7 | |
with: | |
path: "html" | |
deploy: | |
needs: prepare | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
pages: write | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy | |
uses: actions/deploy-pages@v2.0.0 |