First commit
This commit is contained in:
21
pkgs/triton/runtime/__init__.py
Normal file
21
pkgs/triton/runtime/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from .autotuner import (Autotuner, Config, Heuristics, OutOfResources, autotune,
|
||||
heuristics)
|
||||
from .driver import driver
|
||||
from .jit import (JITFunction, KernelInterface, MockTensor, TensorWrapper, reinterpret,
|
||||
version_key)
|
||||
|
||||
__all__ = [
|
||||
"driver",
|
||||
"Config",
|
||||
"Heuristics",
|
||||
"autotune",
|
||||
"heuristics",
|
||||
"JITFunction",
|
||||
"KernelInterface",
|
||||
"version_key",
|
||||
"reinterpret",
|
||||
"TensorWrapper",
|
||||
"OutOfResources",
|
||||
"MockTensor",
|
||||
"Autotuner",
|
||||
]
|
||||
Reference in New Issue
Block a user