Skip to content

Commit bd7dd7d

Browse files
tjruwasefabiendupont
authored andcommitted
Update GH org references (deepspeedai#6998)
Signed-off-by: Olatunji Ruwase <olruwase@microsoft.com> Signed-off-by: Logan Adams <loadams@microsoft.com> Signed-off-by: Fabien Dupont <fdupont@redhat.com> Co-authored-by: Fabien Dupont <fabiendupont@fabiendupont.fr> Signed-off-by: siqi <siqi@tecorigin.com>
1 parent fae1089 commit bd7dd7d

File tree

126 files changed

+405
-405
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+405
-405
lines changed

.github/ISSUE_TEMPLATE/deepspeed_chat_bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ If applicable, add screenshots to help explain your problem.
3232
**System info (please complete the following information):**
3333
- OS: [e.g. Ubuntu 18.04]
3434
- GPU count and types [e.g. two machines with x8 A100s each]
35-
- (if applicable) what [DeepSpeed-MII](https://github.com/microsoft/deepspeed-mii) version are you using
35+
- (if applicable) what [DeepSpeed-MII](https://github.com/deepspeedai/deepspeed-mii) version are you using
3636
- (if applicable) Hugging Face Transformers/Accelerate/etc. versions
3737
- Python version
3838
- Any other relevant info about your setup

.github/ISSUE_TEMPLATE/inference_bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ If applicable, add screenshots to help explain your problem.
2929
**System info (please complete the following information):**
3030
- OS: [e.g. Ubuntu 18.04]
3131
- GPU count and types [e.g. two machines with x8 A100s each]
32-
- (if applicable) what [DeepSpeed-MII](https://github.com/microsoft/deepspeed-mii) version are you using
32+
- (if applicable) what [DeepSpeed-MII](https://github.com/deepspeedai/deepspeed-mii) version are you using
3333
- (if applicable) Hugging Face Transformers/Accelerate/etc. versions
3434
- Python version
3535
- Any other relevant info about your setup

.github/workflows/nv-a6000.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
BRANCH="${{ github.event.inputs.mii_branch }}"
6767
fi
6868
echo "Cloning DeepSpeed-MII branch: $BRANCH"
69-
git clone -b $BRANCH --depth=1 https://github.com/microsoft/DeepSpeed-MII.git
69+
git clone -b $BRANCH --depth=1 https://github.com/deepspeedai/DeepSpeed-MII.git
7070
cd DeepSpeed-MII
7171
pip install .[dev]
7272
cd tests

.github/workflows/nv-ds-chat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
BRANCH="${{ github.event.inputs.dse_branch }}"
5555
fi
5656
echo "DeepSpeedExamples Branch: $BRANCH"
57-
git clone -b $BRANCH https://github.com/microsoft/DeepSpeedExamples.git
57+
git clone -b $BRANCH https://github.com/deepspeedai/DeepSpeedExamples.git
5858
cd DeepSpeedExamples/applications/DeepSpeed-Chat
5959
pip install -r requirements.txt
6060
pip install -e .

.github/workflows/nv-mii.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
BRANCH="${{ github.event.inputs.mii_branch }}"
6767
fi
6868
echo "Cloning DeepSpeed-MII branch: $BRANCH"
69-
git clone -b $BRANCH --depth=1 https://github.com/microsoft/DeepSpeed-MII.git
69+
git clone -b $BRANCH --depth=1 https://github.com/deepspeedai/DeepSpeed-MII.git
7070
cd DeepSpeed-MII
7171
pip install .[dev]
7272
unset TORCH_CUDA_ARCH_LIST # only jit compile for current arch

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ and then repeat the previous `git commit` command.
2323
## Testing
2424
DeepSpeed tracks two types of tests: unit tests and more costly model convergence tests.
2525
The model convergence tests train
26-
[DeepSpeedExamples](https://github.com/microsoft/DeepSpeedExamples/) and measure
26+
[DeepSpeedExamples](https://github.com/deepspeedai/DeepSpeedExamples/) and measure
2727
end-to-end convergence and related metrics. Unit tests are found in `tests/unit/` and
2828
the model convergence tests are found in `tests/model/`.
2929

@@ -40,7 +40,7 @@ tests. Note that [pytest-forked](https://github.com/pytest-dev/pytest-forked) an
4040

4141
### Model Tests
4242
To execute model tests, first [install DeepSpeed](#installation). The
43-
[DeepSpeedExamples](https://github.com/microsoft/DeepSpeedExamples/) repository is cloned
43+
[DeepSpeedExamples](https://github.com/deepspeedai/DeepSpeedExamples/) repository is cloned
4444
as part of this process. Next, execute the model test driver:
4545
```bash
4646
cd tests/model/
@@ -85,8 +85,8 @@ Based on the issue we shall discuss the merit of the new feature and decide whet
8585
### Step 2: implementation and verification
8686
Contributor will go ahead and implement the feature, and the DeepSpeed team will provide guidance/helps as needed. The required deliverables include:
8787

88-
* A PR to [microsoft/DeepSpeed](https://github.com/microsoft/DeepSpeed) including (1) the feature implementation (2) unit tests (3) documentation (4) tutorial
89-
* A PR to [microsoft/DeepSpeedExamples](https://github.com/microsoft/DeepSpeedExamples) or [microsoft/Megatron-DeepSpeed](https://github.com/microsoft/Megatron-DeepSpeed) including the examples of how to use the feature (this is related to the planned testing experiments in proposal)
88+
* A PR to [deepspeedai/DeepSpeed](https://github.com/deepspeedai/DeepSpeed) including (1) the feature implementation (2) unit tests (3) documentation (4) tutorial
89+
* A PR to [deepspeedai/DeepSpeedExamples](https://github.com/deepspeedai/DeepSpeedExamples) or [deepspeedai/Megatron-DeepSpeed](https://github.com/deepspeedai/Megatron-DeepSpeed) including the examples of how to use the feature (this is related to the planned testing experiments in proposal)
9090
* In the implementation (code, documentation, tutorial), we require the feature author to record their GitHub username as a contact method for future questions/maintenance.
9191

9292
After receiving the PRs, we will review them and merge them after necessary tests/fixes.

0 commit comments

Comments
 (0)