Instructions to use kernels-community/gpt-oss-metal-kernels with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use kernels-community/gpt-oss-metal-kernels with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("kernels-community/gpt-oss-metal-kernels") - Notebooks
- Google Colab
- Kaggle
| extern "C" { | |
| void gptoss_format_log(const char* format, va_list args); | |
| __attribute__((__format__(__printf__, 1, 2))) | |
| inline static void gptoss_log(const char* format, ...) { | |
| va_list args; | |
| va_start(args, format); | |
| gptoss_format_log(format, args); | |
| va_end(args); | |
| } | |
| } // extern "C" | |