Instructions to use kernels-community/aiter-kernels with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use kernels-community/aiter-kernels with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("kernels-community/aiter-kernels") - Notebooks
- Google Colab
- Kaggle
| import torch | |
| def get_num_sms(): | |
| # Returns the Compute Unit count of the current device | |
| current_device_index = torch.cuda.current_device() | |
| current_device = torch.cuda.get_device_properties(current_device_index) | |
| num_sms = current_device.multi_processor_count | |
| return num_sms | |
| def get_num_xcds(): | |
| # Currently, you can't query this programmatically. For gfx942/gfx950 it's 8, so we hardcode that here. | |
| return 8 | |