Instructions to use kernels-community/activation with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use kernels-community/activation with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("kernels-community/activation") - Notebooks
- Google Colab
- Kaggle
fix: move benchmark to folder
Browse files- benchmarks/benchmark.py +5 -0
benchmarks/benchmark.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from kernels.benchmarks import SiluAndMulBenchmark
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
class SiluWorkloads(SiluAndMulBenchmark):
|
| 5 |
+
pass
|