Skip to content

Commit baede21

Browse files
Merge commit '206c410d1914162304837107c486226cc8840b4f'
2 parents 92dd27c + 206c410 commit baede21

36 files changed

+614
-619
lines changed

.github/workflows/torch-inductor-tests.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/torch-inductor/scripts/check_acc.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/torch-inductor/scripts/check_perf.py

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/torch-inductor/scripts/common.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/torch-inductor/scripts/install_torchinductor.sh

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/workflows/torch-inductor/scripts/install_triton.sh

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/torch-inductor/scripts/run_torchinductor_acc.sh

Lines changed: 0 additions & 55 deletions
This file was deleted.

.github/workflows/torch-inductor/scripts/run_torchinductor_perf.sh

Lines changed: 0 additions & 71 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
<img src="https://lh5.googleusercontent.com/wzQKEsTFkrgNQO9JjhGH5wFvslJr1saLtLaJ_a6Fp_gNENpvt3VG7BmztwngU9hFJaU4CPwGiw1opQtDvTkLrxWRbO_a12Q-pdESWHgtmheIHcPbOL5ZMC4TSiJVe5ty1w=w3517" alt="Triton logo">
33
</div>
44

5-
The Triton Conference is happening again on September 17th, 2024 in Fremont (CA)!
6-
7-
If you are interested in attending, please fill up [this form](https://docs.google.com/forms/d/e/1FAIpQLSecHC1lkalcm0h3JDUbspekDX5bmBvMxgVTLaK3e-61bzDDbg/viewform).
8-
95
| **`Documentation`** | **`Nightly Wheels`** |
106
|-------------------- | -------------------- |
117
| [![Documentation](https://github.com/triton-lang/triton/actions/workflows/documentation.yml/badge.svg)](https://triton-lang.org/) | [![Wheels](https://github.com/triton-lang/triton/actions/workflows/wheels.yml/badge.svg?branch=release/2.0.x)](https://github.com/triton-lang/triton/actions/workflows/wheels.yml) |

lib/Dialect/TritonGPU/IR/Dialect.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,8 @@ SmallVector<unsigned> DotOperandEncodingAttr::getCTASplitNum() const {
10371037
assert(rank == 2 || rank == 3 && "Invalid dotLayout");
10381038

10391039
// Do not split CTA in K dimension
1040-
getOpIdx() == 0 ? res[rank - 1] = 1 : res[rank - 2] = 1;
1040+
auto kDim = getOpIdx() == 0 ? rank - 1 : rank - 2;
1041+
res[kDim] = 1;
10411042
return res;
10421043
}
10431044
SmallVector<unsigned> DotOperandEncodingAttr::getWarpsPerCTA() const {

0 commit comments

Comments
 (0)