File size: 1,213 Bytes
1e65f33 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | ---
library_name: kernels
{% if license %}license: {{ license }}
{% endif %}---
This is the repository card of {{ repo_id }} that has been pushed on the Hub. It was built to be used with the [`kernels` library](https://github.com/huggingface/kernels). This card was automatically generated.
## How to use
{% if functions %}
```python
# make sure `kernels` is installed: `pip install -U kernels`
from kernels import get_kernel
kernel_module = get_kernel("{{ repo_id }}")
{{ functions[0] }} = kernel_module.{{ functions[0] }}
{{ functions[0] }}(...)
```
{% else %}
Usage example not available.
{% endif %}
## Available functions
{% if functions %}
{% for func in functions %}
- `{{ func }}`
{% endfor %}
{% else %}
Function list not available.
{% endif %}
{% if layers %}
## Available layers
{% for layer in layers %}
- `{{ layer }}`
{% endfor %}
{% endif %}
## Benchmarks
{% if has_benchmark %}
Benchmarking script is available for this kernel. Run `kernels benchmark {{ repo_id }}`.
{% else %}
No benchmark available yet.
{% endif %}
{% if upstream %}
## Source code
Source code of this kernel originally comes from {{ upstream }} and it was repurposed for compatibility with `kernels`.
{% endif %}
|