Skip to content

Commit 199fd8a

Browse files
authored
[FRONTEND][NFC] Remove unused strings (triton-lang#5578)
1 parent 3bac3be commit 199fd8a

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

python/triton/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,13 @@
3333
"compile",
3434
"Config",
3535
"heuristics",
36-
"impl",
3736
"InterpreterError",
3837
"jit",
3938
"JITFunction",
4039
"KernelInterface",
4140
"language",
4241
"MockTensor",
4342
"next_power_of_2",
44-
"ops",
4543
"OutOfResources",
4644
"reinterpret",
4745
"runtime",

python/triton/compiler/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
from .compiler import CompiledKernel, ASTSource, IRSource, compile, make_backend, LazyDict
22
from .errors import CompilationError
33

4-
__all__ = [
5-
"compile", "make_backend", "ASTSource", "IRSource", "AttrsDescriptor", "CompiledKernel", "CompilationError",
6-
"LazyDict"
7-
]
4+
__all__ = ["compile", "make_backend", "ASTSource", "IRSource", "CompiledKernel", "CompilationError", "LazyDict"]

python/triton/language/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@
199199
"int32",
200200
"int64",
201201
"int8",
202-
"ir",
203202
"join",
204203
"load",
205204
"log",
@@ -249,7 +248,6 @@
249248
"swizzle2d",
250249
"tensor",
251250
"trans",
252-
"triton",
253251
"tuple",
254252
"uint16",
255253
"uint32",

0 commit comments

Comments
 (0)