Skip to content

TileOPs

High-performance LLM operator library built on TileLang.

Installation

pip install tileops

Quick Start

import torch
from tileops.ops import GemmOp

op = GemmOp(dtype=torch.float16)
C = op.forward(A, B)