-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into op/layernorm_kernel
- Loading branch information
Showing
177 changed files
with
8,323 additions
and
3,095 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: clang-format | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
clang-format: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install clang-format | ||
run: | | ||
sudo apt-get install -y clang-format colordiff | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Run clang-format | ||
run: | | ||
diff=`git-clang-format --extensions="c,h,m,mm,cc,cp,cpp,c++,cxx,hh,hpp,hxx,inc,cu,cuh,proto,protodevel" --diff --commit ${{ github.event.pull_request.base.sha }}` | ||
[ "$diff" = "no modified files to format" ] && exit 0 | ||
[ "$diff" = "clang-format did not modify any files" ] && exit 0 | ||
printf "\nYou have introduced coding style breakages. You can:\n" | ||
echo "1> Fix the errors with git-clang-format:" | ||
echo " git-clang-format --commit ${{ github.event.pull_request.base.sha }}" | ||
echo "2> Disable checks on section of the code with:" | ||
echo " // clang-format off" | ||
echo " code" | ||
echo " // clang-format on" | ||
printf "\n\033[1mSuggested changes:\n\n" | ||
echo "$diff" | colordiff | ||
exit 1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[submodule "third_party/pybind11"] | ||
path = third_party/pybind11 | ||
url = git@github.com:pybind/pybind11.git | ||
url = https://github.com/pybind/pybind11.git | ||
[submodule "third_party/flashinfer"] | ||
path = third_party/flashinfer | ||
url = git@github.com:vectorch-ai/flashinfer.git | ||
url = https://github.com/vectorch-ai/flashinfer.git | ||
[submodule "third_party/cutlass"] | ||
path = third_party/cutlass | ||
url = git@github.com:NVIDIA/cutlass.git | ||
url = https://github.com/NVIDIA/cutlass.git |
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
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.