First commit
This commit is contained in:
17
pkgs/triton/ops/__init__.py
Normal file
17
pkgs/triton/ops/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# from .conv import _conv, conv
|
||||
from . import blocksparse
|
||||
from .cross_entropy import _cross_entropy, cross_entropy
|
||||
from .flash_attention import attention
|
||||
from .matmul import _matmul, matmul
|
||||
from .bmm_matmul import _bmm, bmm
|
||||
|
||||
__all__ = [
|
||||
"blocksparse",
|
||||
"_cross_entropy",
|
||||
"cross_entropy",
|
||||
"_matmul",
|
||||
"matmul",
|
||||
"_bmm",
|
||||
"bmm",
|
||||
"attention",
|
||||
]
|
||||
Reference in New Issue
Block a user