This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import torch | |
import tabulate | |
from triton.testing import do_bench | |
import torch.nn.functional as F | |
torch.manual_seed(0) | |
repeats = 200 | |
warmup = 30 | |
dtype = torch.bfloat16 |