Kernels
Safetensors
PyTorch
kernel
governance
lambda
gate
provenance
torch
surrogate
doi:10.5281/zenodo.19944926
Instructions to use SZLHOLDINGS/szl-lambda-gate with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use SZLHOLDINGS/szl-lambda-gate with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("SZLHOLDINGS/szl-lambda-gate") - Notebooks
- Google Colab
- Kaggle
lambda-gate ops shim
Browse files
build/torch-universal/szl_lambda_gate/_ops.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SPDX-License-Identifier: Apache-2.0
|
| 2 |
+
# Auto-style ops namespace shim for the universal kernel. Unique suffix lets
|
| 3 |
+
# multiple versions load in the same process (Kernel Hub requirement).
|
| 4 |
+
import torch
|
| 5 |
+
|
| 6 |
+
ops = torch.ops._szl_lambda_gate_20260623081355
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
def add_op_namespace_prefix(op_name: str) -> str:
|
| 10 |
+
return f"_szl_lambda_gate_20260623081355::{op_name}"
|