This repository was archived by the owner on Sep 10, 2025. It is now read-only.
Minor fixes to PT2 export path: enum typo and max_seq_len (#1343) #1968
This file contains hidden or 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: Run the README instructions - with stories | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| test-readme-any: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| .ci/scripts/run-docs readme | |
| echo "::group::Completion" | |
| echo "tests complete" | |
| echo "*******************************************" | |
| echo "::endgroup::" | |
| test-readme-cpu: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| TORCHCHAT_DEVICE=cpu .ci/scripts/run-docs readme | |
| echo "::group::Completion" | |
| echo "tests complete" | |
| echo "*******************************************" | |
| echo "::endgroup::" | |
| test-quantization-any: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| .ci/scripts/run-docs quantization | |
| echo "::group::Completion" | |
| echo "tests complete" | |
| echo "*******************************************" | |
| echo "::endgroup::" | |
| test-quantization-cpu: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| TORCHCHAT_DEVICE=cpu .ci/scripts/run-docs quantization | |
| test-gguf-any: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| .ci/scripts/run-docs gguf | |
| echo "::group::Completion" | |
| echo "tests complete" | |
| echo "*******************************************" | |
| echo "::endgroup::" | |
| test-gguf-cpu: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| TORCHCHAT_DEVICE=cpu .ci/scripts/run-docs gguf | |
| echo "::group::Completion" | |
| echo "tests complete" | |
| echo "*******************************************" | |
| echo "::endgroup::" | |
| test-advanced-any: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| .ci/scripts/run-docs advanced | |
| echo "::group::Completion" | |
| echo "tests complete" | |
| echo "*******************************************" | |
| echo "::endgroup::" | |
| test-advanced-cpu: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| TORCHCHAT_DEVICE=cpu .ci/scripts/run-docs advanced | |
| echo "::group::Completion" | |
| echo "tests complete" | |
| echo "*******************************************" | |
| echo "::endgroup::" | |
| test-evaluation-any: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| .ci/scripts/run-docs evaluation | |
| echo "::group::Completion" | |
| echo "tests complete" | |
| echo "*******************************************" | |
| echo "::endgroup::" | |
| test-evaluation-cpu: | |
| uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
| with: | |
| runner: linux.g5.4xlarge.nvidia.gpu | |
| gpu-arch-type: cuda | |
| gpu-arch-version: "12.1" | |
| timeout: 60 | |
| script: | | |
| echo "::group::Print machine info" | |
| uname -a | |
| echo "::endgroup::" | |
| echo "::group::Install newer objcopy that supports --set-section-alignment" | |
| yum install -y devtoolset-10-binutils | |
| export PATH=/opt/rh/devtoolset-10/root/usr/bin/:$PATH | |
| echo "::endgroup::" | |
| TORCHCHAT_DEVICE=cpu .ci/scripts/run-docs evaluation | |
| echo "::group::Completion" | |
| echo "tests complete" | |
| echo "*******************************************" | |
| echo "::endgroup::" |