Viewing profile — mr_octopus
mr_octopus
HN member- Joined
- Thu, Feb 19, 2026, 1:32 PM UTC
- HN karma
- 5
- Public activity
- 12 items
- HN profile
- View on Hacker News ↗
About mr_octopus
github.com/octoflow-lang/octoflow
Recent public activity
- story
-
comment
Comment #47362431
Three volumes. Free PDFs. No sign-up. Creative Commons (CC BY-NC-ND 4.0). I kept noticing smart people missing the same things. Not from lack of intelligence — from filters they di…
- story
-
comment
Comment #47257739
thanks for that, will change vibe-coded to AI-Assisted then...
-
comment
Comment #47257580
Hi HN, solo developer here. OctoFlow is a GPU-native programming language — the GPU is the primary execution target, not an accelerator you opt into. 4.5 MB binary, zero dependenci…
- story
-
story
Show HN: OctoFlow v1.0.0 – GPU VM where the GPU runs autonomously, CPU is BIOS
Three days ago I posted OctoFlow 0.83 here (GPU-native programming language, 2.2 MB binary). The feedback was great. Since then I've pushed v1.0.0 with the thing I've actually been…
-
comment
Comment #47081157
Most GPU work boils down to a few patterns — map, reduce, scan. Each one has a known way to assign threads. So instead of writing a kernel with thread_id: let c = gpu_add(a, b) let…
-
comment
Comment #47081138
Thanks for trying it! :) Each gpu_* call emits SPIR-V and dispatches via Vulkan compute. Data stays resident in VRAM between calls — no round-trips to CPU unless you need the resul…
-
comment
Comment #47081061
The vendor-agnostic GPU approach via KernelAbstractions is great to see. The Vulkan compute path is underrated for this — it runs on AMD, NVIDIA, and Intel without needing ROCm or …
-
comment
Comment #47081005
Great writeup. The three-pass softmax is where everyone gets stuck — subtracting the max for numerical stability is one of those things you can't learn from a textbook. The pain po…
-
story
Show HN: OctoFlow – A GPU-native programming language
I built a general-purpose programming language where the GPU is the primary execution target, not an afterthought. Most languages treat GPU as "write a kernel, dispatch it, copy re…