Skip to content

Commit f50c16a

Browse files
Merge branch 'main' into whitneywhtsang/sqrt_rn
2 parents ae06cdf + 78d0866 commit f50c16a

File tree

71 files changed

+949
-812
lines changed

Some content is hidden

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

71 files changed

+949
-812
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) |

include/triton/Dialect/Triton/IR/CMakeLists.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ mlir_tablegen(AttrInterfaces.h.inc -gen-attr-interface-decls)
2121
mlir_tablegen(AttrInterfaces.cpp.inc -gen-attr-interface-defs)
2222

2323
set(LLVM_TARGET_DEFINITIONS TritonTypeInterfaces.td)
24-
mlir_tablegen(TritonTypeInterfaces.h.inc -gen-type-interface-decls)
25-
mlir_tablegen(TritonTypeInterfaces.cpp.inc -gen-type-interface-defs)
24+
mlir_tablegen(TypeInterfaces.h.inc -gen-type-interface-decls)
25+
mlir_tablegen(TypeInterfaces.cpp.inc -gen-type-interface-defs)
26+
27+
set(LLVM_TARGET_DEFINITIONS TritonOpInterfaces.td)
28+
mlir_tablegen(OpInterfaces.h.inc -gen-op-interface-decls)
29+
mlir_tablegen(OpInterfaces.cpp.inc -gen-op-interface-defs)
2630

2731
add_public_tablegen_target(TritonTableGen)

0 commit comments

Comments
 (0)