Skip to content

[Megatron-FSDP] Support 'auto' argument which defaults to pre-MixedPrecisionPolicy be… #1059

[Megatron-FSDP] Support 'auto' argument which defaults to pre-MixedPrecisionPolicy be…

[Megatron-FSDP] Support 'auto' argument which defaults to pre-MixedPrecisionPolicy be… #1059

Workflow file for this run

# Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Oncall Assign
on:
pull_request_target:
types: [ready_for_review]
branches:
- main
permissions:
pull-requests: write
contents: read
jobs:
assign-reviewer:
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install requests slack-sdk
- name: Assign Reviewer
env:
GH_TOKEN: ${{ secrets.PAT }}
run: |
python .github/scripts/oncall_manager.py assign --pr ${{ github.event.pull_request.number }}