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 itertools | |
| import torch | |
| import triton | |
| import triton.language as tl | |
| from triton.runtime import driver | |
| DEVICE_CPU = torch.device("cpu") | |
| DEVICE_GPU = triton.runtime.driver.active.get_active_torch_device() |
OlderNewer