Skip to content
10 changes: 7 additions & 3 deletions .github/workflows/doc_check_on_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,16 @@ jobs:
# we use the versions in the main branch as the guide for versions to display
# checkout will give your merged branch
# therefore, we need to make the merged branch as the main branch
# there is no main branch, so it's safe to checkout the main branch from the merged branch
# docer will rebase the remote main branch to the merged branch, so we have to config user
- name: Make the merged branch main
run: |
cd ColossalAI
curBranch=$(git rev-parse --abbrev-ref HEAD)
git checkout main
git merge $curBranch # fast-forward master up to the merge
git checkout -b main
git branch -u origin/main
git config user.name 'github-actions'
git config user.email 'github-actions@github.com'
Comment thread
FrankLeeeee marked this conversation as resolved.


- name: Build docs
run: |
Expand Down
2 changes: 1 addition & 1 deletion docs/source/zh-Hans/features/1D_tensor_parallel.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
```math
\left[\begin{matrix} B_1 \\ B_2 \end{matrix} \right]
```
这就是所谓的行并行方式.<br>
这就是所谓的行并行方式.

为了计算
```math
Expand Down