flash-attn3 / benchmarks /benchmark.py
danieldk's picture
danieldk HF Staff
Uploaded using `kernel-builder`.
467200e verified
Raw
History Blame
317 Bytes
from kernels.benchmarks import (
FlashAttentionBenchmark,
FlashAttentionCausalBenchmark,
FlashAttentionVarlenBenchmark,
)
class FlashAttn(FlashAttentionBenchmark):
pass
class FlashAttnCausal(FlashAttentionCausalBenchmark):
pass
class FlashAttnVarlen(FlashAttentionVarlenBenchmark):
pass