Instructions to use kernels-community/yoso with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use kernels-community/yoso with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("kernels-community/yoso") - Notebooks
- Google Colab
- Kaggle
Uploaded using `kernel-builder`.
Browse files- .gitattributes +7 -0
- build/torch210-cxx11-cu126-aarch64-linux/_ops.py +3 -3
- build/torch210-cxx11-cu126-aarch64-linux/{_yoso_cuda_1e4ff0f.abi3.so → _yoso_cuda_bfa3b2f.abi3.so} +1 -1
- build/torch210-cxx11-cu128-aarch64-linux/_ops.py +3 -3
- build/{torch211-cxx11-cu128-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so → torch210-cxx11-cu128-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so} +1 -1
- build/torch210-cxx11-cu130-aarch64-linux/_ops.py +3 -3
- build/{torch211-cxx11-cu130-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so → torch210-cxx11-cu130-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so} +1 -1
- build/torch211-cxx11-cu126-aarch64-linux/_ops.py +3 -3
- build/torch211-cxx11-cu126-aarch64-linux/{_yoso_cuda_1e4ff0f.abi3.so → _yoso_cuda_bfa3b2f.abi3.so} +1 -1
- build/torch211-cxx11-cu128-aarch64-linux/_ops.py +3 -3
- build/{torch210-cxx11-cu128-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so → torch211-cxx11-cu128-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so} +1 -1
- build/torch211-cxx11-cu130-aarch64-linux/_ops.py +3 -3
- build/{torch210-cxx11-cu130-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so → torch211-cxx11-cu130-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so} +1 -1
- build/torch29-cxx11-cu129-aarch64-linux/_ops.py +3 -3
- build/torch29-cxx11-cu129-aarch64-linux/{_yoso_cuda_1e4ff0f.abi3.so → _yoso_cuda_bfa3b2f.abi3.so} +1 -1
.gitattributes
CHANGED
|
@@ -120,3 +120,10 @@ build/torch211-cxx11-cu128-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so filter=lfs d
|
|
| 120 |
build/torch211-cxx11-cu130-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 121 |
build/torch29-cxx11-cu129-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 122 |
build/torch211-cu128-x86_64-windows/_yoso_cuda_8cb0e25.pyd filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
build/torch211-cxx11-cu130-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 121 |
build/torch29-cxx11-cu129-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 122 |
build/torch211-cu128-x86_64-windows/_yoso_cuda_8cb0e25.pyd filter=lfs diff=lfs merge=lfs -text
|
| 123 |
+
build/torch210-cxx11-cu126-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 124 |
+
build/torch210-cxx11-cu128-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 125 |
+
build/torch210-cxx11-cu130-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 126 |
+
build/torch211-cxx11-cu126-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 127 |
+
build/torch211-cxx11-cu128-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 128 |
+
build/torch211-cxx11-cu130-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
| 129 |
+
build/torch29-cxx11-cu129-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so filter=lfs diff=lfs merge=lfs -text
|
build/torch210-cxx11-cu126-aarch64-linux/_ops.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
import torch
|
| 2 |
-
from . import
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 1 |
import torch
|
| 2 |
+
from . import _yoso_cuda_bfa3b2f
|
| 3 |
+
ops = torch.ops._yoso_cuda_bfa3b2f
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
+
return f"_yoso_cuda_bfa3b2f::{op_name}"
|
build/torch210-cxx11-cu126-aarch64-linux/{_yoso_cuda_1e4ff0f.abi3.so → _yoso_cuda_bfa3b2f.abi3.so}
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2569064
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:80f5c1def467e747add28433f76c8bb0720a56825759d4200a0ccd5c1dfb3468
|
| 3 |
size 2569064
|
build/torch210-cxx11-cu128-aarch64-linux/_ops.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
import torch
|
| 2 |
-
from . import
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 1 |
import torch
|
| 2 |
+
from . import _yoso_cuda_bfa3b2f
|
| 3 |
+
ops = torch.ops._yoso_cuda_bfa3b2f
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
+
return f"_yoso_cuda_bfa3b2f::{op_name}"
|
build/{torch211-cxx11-cu128-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so → torch210-cxx11-cu128-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so}
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 3159096
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fe80d951f275b06cfd389576f6c9bd8383dd488b8d109ae331500c8cc6fa72e
|
| 3 |
size 3159096
|
build/torch210-cxx11-cu130-aarch64-linux/_ops.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
import torch
|
| 2 |
-
from . import
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 1 |
import torch
|
| 2 |
+
from . import _yoso_cuda_bfa3b2f
|
| 3 |
+
ops = torch.ops._yoso_cuda_bfa3b2f
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
+
return f"_yoso_cuda_bfa3b2f::{op_name}"
|
build/{torch211-cxx11-cu130-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so → torch210-cxx11-cu130-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so}
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 3165752
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c174704c88f8009bf586ddeed2329b7059e764208295a3223a24f1194f6f47d2
|
| 3 |
size 3165752
|
build/torch211-cxx11-cu126-aarch64-linux/_ops.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
import torch
|
| 2 |
-
from . import
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 1 |
import torch
|
| 2 |
+
from . import _yoso_cuda_bfa3b2f
|
| 3 |
+
ops = torch.ops._yoso_cuda_bfa3b2f
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
+
return f"_yoso_cuda_bfa3b2f::{op_name}"
|
build/torch211-cxx11-cu126-aarch64-linux/{_yoso_cuda_1e4ff0f.abi3.so → _yoso_cuda_bfa3b2f.abi3.so}
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2569064
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6872da8b43c817b5b22188fd7844769a62fe6794d421e08b86d6662ed6ce0819
|
| 3 |
size 2569064
|
build/torch211-cxx11-cu128-aarch64-linux/_ops.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
import torch
|
| 2 |
-
from . import
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 1 |
import torch
|
| 2 |
+
from . import _yoso_cuda_bfa3b2f
|
| 3 |
+
ops = torch.ops._yoso_cuda_bfa3b2f
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
+
return f"_yoso_cuda_bfa3b2f::{op_name}"
|
build/{torch210-cxx11-cu128-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so → torch211-cxx11-cu128-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so}
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 3159096
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:304c443b3e4965c9e1af2a3ead062beae5834c724f582864f80fecc2ac232aad
|
| 3 |
size 3159096
|
build/torch211-cxx11-cu130-aarch64-linux/_ops.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
import torch
|
| 2 |
-
from . import
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 1 |
import torch
|
| 2 |
+
from . import _yoso_cuda_bfa3b2f
|
| 3 |
+
ops = torch.ops._yoso_cuda_bfa3b2f
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
+
return f"_yoso_cuda_bfa3b2f::{op_name}"
|
build/{torch210-cxx11-cu130-aarch64-linux/_yoso_cuda_1e4ff0f.abi3.so → torch211-cxx11-cu130-aarch64-linux/_yoso_cuda_bfa3b2f.abi3.so}
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 3165752
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b4f84350827fa4a1ff82ac65c470a5927d5426195507c39cbc91920291ddcc9
|
| 3 |
size 3165752
|
build/torch29-cxx11-cu129-aarch64-linux/_ops.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
import torch
|
| 2 |
-
from . import
|
| 3 |
-
ops = torch.ops.
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
-
return f"
|
|
|
|
| 1 |
import torch
|
| 2 |
+
from . import _yoso_cuda_bfa3b2f
|
| 3 |
+
ops = torch.ops._yoso_cuda_bfa3b2f
|
| 4 |
|
| 5 |
def add_op_namespace_prefix(op_name: str):
|
| 6 |
"""
|
| 7 |
Prefix op by namespace.
|
| 8 |
"""
|
| 9 |
+
return f"_yoso_cuda_bfa3b2f::{op_name}"
|
build/torch29-cxx11-cu129-aarch64-linux/{_yoso_cuda_1e4ff0f.abi3.so → _yoso_cuda_bfa3b2f.abi3.so}
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 3157848
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d447ffc9c24911f25722405e32e4f19dc71e8a80b3a8f56327add89e90675c06
|
| 3 |
size 3157848
|