Views
No views yet
STATUS: tests PASS.get_kernelimport-LIVE. Unsloth/LoRA is the wrong tool. Receipted kernels, not silent CUDA.
| Thing | Label | Method / N / date / what-NOT |
|---|---|---|
tests (PYTHONPATH=torch-ext) | PASS | MEASURED 2026-08-29T15:54:04Z host betterwithage Windows-10-10.0.26200-SP0. torch 2.10.0+cu128. GPU NVIDIA GeForce RTX 5050 Laptop GPU arch Blackwell. pytest 3 passed in 1.57s. Failed nodes: none. What-NOT: not a leaderboard. torch.compile fullgraph failures on Windows Blackwell (cl is not found) are MEASURED, not hidden. |
Kernel Hub get_kernel | import-LIVE | kernels 0.16.1. Default: get_kernel("SZLHOLDINGS/szl-blocked", revision="main", trust_remote_code=True) → True. backend="cpu" → True. trust_remote_code=False → ValueError (SZLHOLDINGS is not a trusted publisher). repo_type=kernel required (kernels 0.16). What-NOT: not a weight load; do not pickle/joblib.load. |
| formula-tax | ADVISORY | locked-8 F1 F4 F7 F11 F12 F18 F19 F22. registry_count=21. Λ geomean 1.0. uniqueness Conjecture 1 (never a theorem). |
| I1–I8 | catalog | I1 receipt-chain-continuity; I2 ledger-failure-shape; I3 served-run-has-model; I4 signed-columns-atomic; I5 loop-steps-positive; I6 receipt-ed25519-verify; I7 receipt-columns-consistent; I8 flywheel-lineage. Executed by SZLHOLDINGS/szl-invariants. Statuses never coerced. Λ untouched. |
| CUDA speedup / tokens/s / joules | UNAVAILABLE | Not claimed. Receipted kernels, not silent CUDA. |
szl-holdings/szl-blocked @ 79f950a60debb7f1f0c6f5e2f3baa5e8b7ab6739. Artifacts: BENCH.laptop-blackwell.json, OPERATIONAL.json.1from kernels import get_kernel
2k = get_kernel("SZLHOLDINGS/szl-blocked", revision="main", trust_remote_code=True)fn never runs (BlockedResult.output is None) and a BLOCK receipt is written. Public API: governed_call, GovernedGate, deny_by_default / deny_if_flag / deny_if_action_in, UnifiedReceiptChain. Sibling package szl_euaiact can emit an Annex IV-style DRAFT skeleton.model.joblib is QUARANTINED executable serialization — do not joblib.load it.1
2
3<!-- SZL-ATELIER-CUT:v1:START -->
4## The cut
5
6People write Annex IV in Word. We keep a kernel that refuses to publish if the annex fields are empty.
7
8A blocked publish — the name is the feature.
9
10### Silhouette → leave → SZL
11
12| Leader | Take, then tweak |
13|---|---|
14| Anthropic | Policy docs. We want a gate. |
15| NVIDIA | Enterprise compliance packs. |
16| Unsloth | No. |
17
18Nobody else ships this combination. That is the point of a one-of-one.
19
20## Intended use
21
22Block publish when annex fields are missing.
23
24## Limitations
25
26- Not legal advice. A documentation gate.
27
28Canonical GitHub: [`szl-holdings/szl-blocked`](https://github.com/szl-holdings/szl-blocked/blob/main/README.md)
29<!-- SZL-ATELIER-CUT:v1:END -->
30
31from kernels import get_kernel
32blk = get_kernel("SZLHOLDINGS/szl-blocked", revision="main", trust_remote_code=True)
33
34chain = blk.UnifiedReceiptChain()
35policy = blk.deny_if_action_in({"exfiltrate", "delete_all"})
36def do_work(x): return x * 2
37ok = blk.governed_call(do_work, policy, chain, request={"action": "summarize"}, args=(21,))
38no = blk.governed_call(do_work, policy, chain, request={"action": "exfiltrate"}, args=(21,))
39assert ok.blocked is False and ok.output == 42
40assert no.blocked is True and no.output is None