Instructions to use Motif-Technologies/activation with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use Motif-Technologies/activation with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("Motif-Technologies/activation") - Notebooks
- Google Colab
- Kaggle
File size: 13,904 Bytes
e5e2eeb a5e85e1 9dcee96 e5e2eeb 7d51e61 9dcee96 7d51e61 e5e2eeb 7d51e61 e5e2eeb 7d51e61 e5e2eeb 9dcee96 7d51e61 e195bbb e5e2eeb 7d51e61 e5e2eeb e195bbb e5e2eeb 7d51e61 e5e2eeb 9dcee96 e5e2eeb 7d51e61 e5e2eeb 7d51e61 e5e2eeb 9dcee96 7d51e61 e195bbb e5e2eeb a1e5ca8 e5e2eeb 7d51e61 e5e2eeb e195bbb e5e2eeb a1e5ca8 e5e2eeb 7d51e61 e5e2eeb 9dcee96 e5e2eeb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | import collections
import math
import re
from typing import Any, Dict, Sequence
import torch
import triton
from torch.profiler import ProfilerActivity, profile
from .diff_engine import DiffCase
def _get_best_cuda_timing(timings_ms, key):
"""Look up the best CUDA-based timing for speedup calculation."""
for provider in ("cuda", "compiled_cuda"):
if provider in timings_ms and key in timings_ms[provider]:
return timings_ms[provider][key]
raise KeyError(f"No CUDA timing found for {key}")
def _shorten_kernel_name(name: str) -> str:
"""Strip template args and function params from CUDA kernel names.
``void motif::grouped_poly_norm_bwd_kernel<...>(...)``
→ ``motif::grouped_poly_norm_bwd_kernel``
"""
# Remove leading 'void '
s = re.sub(r"^void\s+", "", name)
# Remove template args <...> (handles nested <>)
while "<" in s:
s = re.sub(r"<[^<>]*>", "", s)
# Remove function params (...)
s = re.sub(r"\(.*\)$", "", s)
return s.strip()
def _compute_bytes(inputs, forward_fn, obj):
"""Compute total bytes: all input tensors read + all output tensors written."""
input_bytes = sum(v.nbytes for v in inputs.values()
if isinstance(v, torch.Tensor))
output = forward_fn()
if isinstance(output, torch.Tensor):
output_bytes = output.nbytes
elif isinstance(output, (tuple, list)):
output_bytes = sum(o.nbytes for o in output
if isinstance(o, torch.Tensor))
else:
output_bytes = 0
return input_bytes + output_bytes
def profile_bench(fn, warmup=5, repeat=10, verbose=True, total_bytes=0):
"""Measure CUDA kernel time via torch.profiler.
Profiles the function, sums all CUDA kernel durations, and returns
the median across repeats. Also prints a per-kernel breakdown when
*verbose* is True so the caller can spot unexpected kernels.
Parameters
----------
total_bytes : int
Total bytes transferred (inputs read + outputs written).
If > 0, prints bandwidth in GB/s after the breakdown.
Returns
-------
median_ms : float
Median total CUDA kernel time in **milliseconds** (same unit as
``triton.testing.do_bench``).
"""
for _ in range(warmup):
fn()
torch.cuda.synchronize()
kernel_times_us: list[float] = []
last_breakdown: list[tuple[str, float]] = []
for _ in range(repeat):
with profile(activities=[ProfilerActivity.CUDA]) as prof:
fn()
breakdown: dict[str, float] = {}
for evt in prof.key_averages():
if evt.device_time_total > 0:
breakdown[evt.key] = (breakdown.get(evt.key, 0) +
evt.device_time_total)
total_us = sum(breakdown.values())
kernel_times_us.append(total_us)
last_breakdown = sorted(breakdown.items(),
key=lambda x: x[1],
reverse=True)
median_us = sorted(kernel_times_us)[len(kernel_times_us) // 2]
if verbose and last_breakdown:
total = sum(t for _, t in last_breakdown)
names = [_shorten_kernel_name(n) for n, _ in last_breakdown]
col_w = max(len(n) for n in names) + 2
col_w = max(col_w, len("Total kernel time") + 2)
for name, (_, t) in zip(names, last_breakdown):
pct = 100 * t / total if total > 0 else 0
print(f" {name:<{col_w}s} {t:>8.1f}us ({pct:4.1f}%)")
print(f" {'Total kernel time':<{col_w}s} {total:>8.1f}us")
if total_bytes > 0 and median_us > 0:
bw_gbs = total_bytes / (median_us * 1e-6) / 1e9
print(f" {'Bandwidth':<{col_w}s} {bw_gbs:>7.1f} GB/s"
f" ({total_bytes / 1e6:.1f} MB)")
return median_us / 1000 # us -> ms
def make_fwd_key(batch_size, seq_len, dim):
return f"forward : ({batch_size}, {seq_len}, {dim})"
def make_bwd_key(batch_size, seq_len, dim):
return f"backward : ({batch_size}, {seq_len}, {dim})"
def parse_config_string(config_str):
match = re.match(r"(\w+)\s*:\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)",
config_str)
if not match:
raise ValueError(f"Invalid config string: {config_str}")
_, bs, sl, d = match.groups()
return int(bs), int(sl), int(d)
def make_fwd_benchmark_for_case(
*,
case: DiffCase,
configs: Sequence[tuple[int, int, int]],
plot_name: str,
ylabel: str = "",
line_vals=("naive", "cuda", "speedup"),
line_names: Dict[str, str] | None = None,
dtype=torch.bfloat16,
eps: float = 1e-6,
time_unit_scale: float = 1000,
):
timings_ms = collections.defaultdict(dict)
bytes_map: dict[str, int] = {}
line_vals = list(line_vals)
line_names = line_names or {v: v.title() for v in line_vals}
x_vals = [list(_) for _ in configs]
@triton.testing.perf_report(
triton.testing.Benchmark(x_names=["dim", "batch_size", "seq_len"],
x_vals=x_vals,
line_arg="provider",
line_vals=line_vals,
line_names=[line_names[v] for v in line_vals],
ylabel=ylabel,
plot_name=plot_name,
args={}))
def bench(dim, batch_size, seq_len, provider):
key = make_fwd_key(dim, batch_size, seq_len)
I = case.build_inputs(batch_size, seq_len, dim, dtype, eps)
if provider == "speedup":
return round(
timings_ms["naive"][key] /
_get_best_cuda_timing(timings_ms, key), 2)
if provider.endswith("_bw"):
base = provider[:-3]
ms = timings_ms[base][key]
return round(bytes_map[key] / (ms * 1e-3) / 1e9, 2)
if provider == "naive":
obj = case.make_naive(I)
elif provider == "compiled" and hasattr(case, "make_compiled"):
obj = case.make_compiled(I)
else:
obj = case.make_cuda(I)
run = lambda: case.forward(obj, I)
nbytes = _compute_bytes(I, run, obj)
bytes_map[key] = nbytes
print(f" [{provider}] {key}")
ms = profile_bench(run, total_bytes=nbytes)
timings_ms[provider][key] = ms
return time_unit_scale * ms
return bench
def make_fwd_benchmark_plot_for_case(
*,
case: DiffCase,
configs: Sequence[tuple[int, int, int]],
plot_name: str,
ylabel: str = "Relative Speedup",
line_vals=("naive", "cuda"),
line_names: Dict[str, str] | None = None,
dtype=torch.bfloat16,
eps: float = 1e-6,
):
timings_ms = collections.defaultdict(dict)
spdup_ratio = list()
line_vals = list(line_vals)
line_names = line_names or {v: v.title() for v in line_vals}
x_vals = [make_fwd_key(*_) for _ in configs]
x_vals.append("Geometric Mean")
@triton.testing.perf_report(
triton.testing.Benchmark(x_names=["config"],
x_vals=x_vals,
line_arg="provider",
line_vals=line_vals,
line_names=[line_names[v] for v in line_vals],
ylabel=ylabel,
plot_name=plot_name,
args={}))
def bench(config, provider):
if config == "Geometric Mean":
if provider == "cuda":
return round(math.prod(spdup_ratio)**(1 / len(spdup_ratio)), 2)
else:
return 1.00
batch_size, seq_len, dim = parse_config_string(config)
I = case.build_inputs(batch_size, seq_len, dim, dtype, eps)
if provider == "naive":
obj = case.make_naive(I)
elif provider == "compiled" and hasattr(case, "make_compiled"):
obj = case.make_compiled(I)
else:
obj = case.make_cuda(I)
run = lambda: case.forward(obj, I)
nbytes = _compute_bytes(I, run, obj)
print(f" [{provider}] {config}")
ms = profile_bench(run, total_bytes=nbytes)
timings_ms[provider][config] = ms
if provider == "cuda":
ratio = timings_ms["naive"][config] / _get_best_cuda_timing(
timings_ms, config)
spdup_ratio.append(ratio)
return round(ratio, 2)
else:
return 1.00
return bench
def make_bwd_benchmark_for_case(
*,
case: DiffCase,
configs: Sequence[tuple[int, int, int]],
plot_name: str,
ylabel: str = "",
line_vals=("naive", "cuda", "speedup"),
line_names: Dict[str, str] | None = None,
dtype=torch.bfloat16,
eps: float = 1e-6,
time_unit_scale: float = 1000,
):
timings_ms = collections.defaultdict(dict)
bytes_map: dict[str, int] = {}
line_vals = list(line_vals)
line_names = line_names or {v: v.title() for v in line_vals}
x_vals = [list(_) for _ in configs]
@triton.testing.perf_report(
triton.testing.Benchmark(x_names=["dim", "batch_size", "seq_len"],
x_vals=x_vals,
line_arg="provider",
line_vals=line_vals,
line_names=[line_names[v] for v in line_vals],
ylabel=ylabel,
plot_name=plot_name,
args={}))
def bench(dim, batch_size, seq_len, provider):
key = make_bwd_key(dim, batch_size, seq_len)
I = case.build_inputs(batch_size, seq_len, dim, dtype, eps)
if provider == "speedup":
return round(
timings_ms["naive"][key] /
_get_best_cuda_timing(timings_ms, key), 2)
if provider.endswith("_bw"):
base = provider[:-3]
ms = timings_ms[base][key]
return round(bytes_map[key] / (ms * 1e-3) / 1e9, 2)
if provider == "naive":
obj = case.make_naive(I)
elif provider == "compiled" and hasattr(case, "make_compiled"):
obj = case.make_compiled(I)
else:
obj = case.make_cuda(I)
y = case.forward(obj, I)
gin = list(case.grad_inputs(I)) + list(obj.parameters())
if isinstance(y, torch.Tensor):
g = [torch.randn_like(y)]
else:
g = [torch.randn_like(r) for r in y]
run = lambda: torch.autograd.grad(y,
gin,
g,
retain_graph=True,
create_graph=False,
allow_unused=False)
fwd_run = lambda: case.forward(obj, I)
nbytes = _compute_bytes(I, fwd_run, obj)
bytes_map[key] = nbytes
print(f" [{provider}] {key}")
ms = profile_bench(run, total_bytes=nbytes)
timings_ms[provider][key] = ms
return time_unit_scale * ms
return bench
def make_bwd_benchmark_plot_for_case(
*,
case: DiffCase,
configs: Sequence[tuple[int, int, int]],
plot_name: str,
ylabel: str = "Relative Speedup",
line_vals=("naive", "cuda"),
line_names: Dict[str, str] | None = None,
dtype=torch.bfloat16,
eps: float = 1e-6,
):
timings_ms = collections.defaultdict(dict)
spdup_ratio = list()
line_vals = list(line_vals)
line_names = line_names or {v: v.title() for v in line_vals}
x_vals = [make_bwd_key(*_) for _ in configs]
x_vals.append("Geometric Mean")
@triton.testing.perf_report(
triton.testing.Benchmark(x_names=["config"],
x_vals=x_vals,
line_arg="provider",
line_vals=line_vals,
line_names=[line_names[v] for v in line_vals],
ylabel=ylabel,
plot_name=plot_name,
args={}))
def bench(config, provider):
if config == "Geometric Mean":
if provider == "cuda":
return round(math.prod(spdup_ratio)**(1 / len(spdup_ratio)), 2)
else:
return 1.00
batch_size, seq_len, dim = parse_config_string(config)
I = case.build_inputs(batch_size, seq_len, dim, dtype, eps)
if provider == "naive":
obj = case.make_naive(I)
elif provider == "compiled" and hasattr(case, "make_compiled"):
obj = case.make_compiled(I)
else:
obj = case.make_cuda(I)
y = case.forward(obj, I)
gin = list(case.grad_inputs(I)) + list(obj.parameters())
if isinstance(y, torch.Tensor):
g = [torch.randn_like(y)]
else:
g = [torch.randn_like(r) for r in y]
run = lambda: torch.autograd.grad(y,
gin,
g,
retain_graph=True,
create_graph=False,
allow_unused=False)
fwd_run = lambda: case.forward(obj, I)
nbytes = _compute_bytes(I, fwd_run, obj)
print(f" [{provider}] {config}")
ms = profile_bench(run, total_bytes=nbytes)
timings_ms[provider][config] = ms
if provider == "cuda":
ratio = timings_ms["naive"][config] / _get_best_cuda_timing(
timings_ms, config)
spdup_ratio.append(ratio)
return round(ratio, 2)
else:
return 1.00
return bench
|