hp-l33's picture
Add Sol-Attn Kernel Builder source
8e9f35a verified
Raw
History Blame Contribute Delete
436 Bytes
"""SM120 kernel recipe."""
from .mainloop import SolAttnForwardSm120
def make_kernel(
*,
debug_route_trace: bool = False,
prefetch_first_exact_k: bool = True,
prefetch_next_route_k: bool = True,
):
return SolAttnForwardSm120(
debug_route_trace=debug_route_trace,
prefetch_first_exact_k=prefetch_first_exact_k,
prefetch_next_route_k=prefetch_next_route_k,
)
__all__ = ["make_kernel"]