Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>GPU Kernels and Hardware — SnapKitty</title> | |
| <style> | |
| :root { | |
| --bg: #0a0a0f; --surface: #111118; --border: #1e1e2e; | |
| --accent: #8b5cf6; --accent2: #06b6d4; --accent3: #10b981; | |
| --text: #e2e8f0; --muted: #94a3b8; --dim: #64748b; | |
| --warn: #f59e0b; --red: #ef4444; | |
| } | |
| * { box-sizing: border-box; margin: 0; padding: 0; } | |
| body { | |
| background: var(--bg); color: var(--text); | |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; | |
| line-height: 1.6; | |
| } | |
| .hero { | |
| text-align: center; padding: 48px 24px 32px; position: relative; | |
| } | |
| .hero::before { | |
| content: ''; position: absolute; inset: 0; | |
| background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139,92,246,0.10) 0%, transparent 70%); | |
| pointer-events: none; | |
| } | |
| .hero h1 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; } | |
| .hero h1 span { color: #ef4444; } | |
| .tagline { margin-top: 8px; color: var(--muted); font-size: 0.95rem; max-width: 640px; margin-inline: auto; } | |
| .breadcrumb { | |
| text-align: center; margin-top: 12px; font-size: 0.8rem; | |
| } | |
| .breadcrumb a { color: var(--accent); text-decoration: none; } | |
| .breadcrumb a:hover { text-decoration: underline; } | |
| .container { max-width: 1100px; margin: 0 auto; padding: 0 24px 48px; } | |
| .repo-grid { | |
| display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); | |
| gap: 14px; margin-top: 28px; | |
| } | |
| .repo-card { | |
| background: var(--surface); border: 1px solid var(--border); border-radius: 10px; | |
| padding: 18px 20px; transition: border-color 0.2s; | |
| } | |
| .repo-card:hover { border-color: #ef4444; } | |
| .repo-name a { | |
| color: #ef4444; text-decoration: none; font-weight: 600; font-size: 0.95rem; | |
| } | |
| .repo-name a:hover { text-decoration: underline; } | |
| .repo-desc { color: var(--muted); font-size: 0.82rem; margin-top: 6px; line-height: 1.5; } | |
| .repo-langs { | |
| margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap; | |
| } | |
| .lang-tag { | |
| padding: 2px 8px; border-radius: 4px; font-size: 0.65rem; | |
| text-transform: uppercase; letter-spacing: 0.05em; | |
| background: rgba(139,92,246,0.1); color: var(--dim); border: 1px solid var(--border); | |
| } | |
| .gh-link { | |
| display: inline-block; margin-top: 8px; font-size: 0.75rem; | |
| color: var(--dim); text-decoration: none; | |
| } | |
| .gh-link:hover { color: var(--text); } | |
| .footer { | |
| text-align: center; padding: 40px 24px; color: var(--dim); font-size: 0.78rem; | |
| border-top: 1px solid var(--border); margin-top: 32px; | |
| } | |
| @media (max-width: 600px) { | |
| .hero h1 { font-size: 1.5rem; } | |
| .repo-grid { grid-template-columns: 1fr; } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="hero"> | |
| <h1>⚡ <span>GPU Kernels and Hardware</span></h1> | |
| <p class="tagline">CUDA kernels, bare-metal processors, space flight computers, and embedded hardware. From RTX tensor cores to Apollo guidance.</p> | |
| <div class="breadcrumb"><a href="https://huggingface.co/spaces/Snapkitty/README">← Back to SnapKitty Collective</a></div> | |
| </div> | |
| <div class="container"> | |
| <div class="repo-grid"> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/hilbert">hilbert</a></div> | |
| <div class="repo-desc">Hilbert-4B architecture spec with CUDA kernels (RMSNorm, FlashAttn, SwiGLU, RoPE). Ampere GPUs, GGUF export.</div> | |
| <div class="repo-langs"><span class="lang-tag">cuda</span><span class="lang-tag">python</span><span class="lang-tag">c++</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/hilbert">GitHub →</a> | |
| </div> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/nvidia-stack">nvidia-stack</a></div> | |
| <div class="repo-desc">NVIDIA GPU computing stack integration with CUDA, PTX, and kernel optimization tooling.</div> | |
| <div class="repo-langs"><span class="lang-tag">cuda</span><span class="lang-tag">ptx</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/nvidia-stack">GitHub →</a> | |
| </div> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-ada-rtx">sovereign-ada-rtx</a></div> | |
| <div class="repo-desc">Complete deterministic processor in pure Ada. 21 packages, RTX tensor engine, formal assertions, Lovelace design.</div> | |
| <div class="repo-langs"><span class="lang-tag">ada</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-ada-rtx">GitHub →</a> | |
| </div> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/snapkitty-twin-mars-asm">snapkitty-twin-mars-asm</a></div> | |
| <div class="repo-desc">x86_64 assembly reconstruction of TWIN-MARS agent. Direct syscalls, no libc dependencies.</div> | |
| <div class="repo-langs"><span class="lang-tag">x86_64 asm</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/snapkitty-twin-mars-asm">GitHub →</a> | |
| </div> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/assembly-bite">assembly-bite</a></div> | |
| <div class="repo-desc">Assembly language primitives for sovereign execution with verified instruction sequences.</div> | |
| <div class="repo-langs"><span class="lang-tag">asm</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/assembly-bite">GitHub →</a> | |
| </div> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-agc">sovereign-agc</a></div> | |
| <div class="repo-desc">Apollo Guidance Computer rebuilt in 7 languages. Ada SPARK verification, Idris 2 proofs, Lean 4 zero-sorry.</div> | |
| <div class="repo-langs"><span class="lang-tag">ada</span><span class="lang-tag">idris2</span><span class="lang-tag">lean4</span><span class="lang-tag">fortran</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-agc">GitHub →</a> | |
| </div> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-apollo">sovereign-apollo</a></div> | |
| <div class="repo-desc">Apollo Guidance Computer rebuilt by 7 AI systems with formal verification and quantum ignition circuits.</div> | |
| <div class="repo-langs"><span class="lang-tag">ada</span><span class="lang-tag">fortran</span><span class="lang-tag">python</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-apollo">GitHub →</a> | |
| </div> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/grisp-shadow-fleet">grisp-shadow-fleet</a></div> | |
| <div class="repo-desc">GRiSP embedded hardware fleet with shadow execution and sovereign attestation.</div> | |
| <div class="repo-langs"><span class="lang-tag">erlang</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/grisp-shadow-fleet">GitHub →</a> | |
| </div> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-doorbell">sovereign-doorbell</a></div> | |
| <div class="repo-desc">Zero-variance hardware trigger for ORTHO-32-T deterministic fabric. x86_64 assembly, SMMU shadow architecture.</div> | |
| <div class="repo-langs"><span class="lang-tag">asm</span><span class="lang-tag">verilog</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-doorbell">GitHub →</a> | |
| </div> | |
| <div class="repo-card"> | |
| <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-hypervisor-sdk">sovereign-hypervisor-sdk</a></div> | |
| <div class="repo-desc">Public API for ARM64 EL2 hypervisor, ORTHO-32-T chip fabric, formally verified AGI kernel.</div> | |
| <div class="repo-langs"><span class="lang-tag">c</span><span class="lang-tag">arm64</span></div> | |
| <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-hypervisor-sdk">GitHub →</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="footer"> | |
| <p>SnapKitty Collective — Sovereign AI Infrastructure</p> | |
| <p style="margin-top:6px;">Copyright 2026 Jessica L. Williams / SNAPKITTYWEST</p> | |
| </div> | |
| </body> | |
| </html> |