frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Enough with All the Raft

https://transactional.blog/talk/enough-with-all-the-raft
1•birdculture•2m ago•0 comments

Layanan Agoda

1•Citilanke•3m ago•0 comments

Layanan Citilink Indonesia

1•Citilanke•4m ago•4 comments

iTorrent Restored to AltStore in the EU

https://github.com/XITRIX/iTorrent/issues/401
1•NotPractical•6m ago•0 comments

Dev-CPP: open-source IDE

https://www.dev-cpp.com/
1•bitbasher•7m ago•1 comments

SVG.js v3.2

https://svgjs.dev/docs/3.2/
1•eustoria•11m ago•0 comments

Cat's Arch – Online anonymization front-end for variety of tools

https://catsarch.com/
1•eustoria•14m ago•0 comments

Uranium detected in breastmilk samples in Bihar, 70% of infants at risk: Study

https://www.indiatoday.in/india/story/uranium-detected-in-breastmilk-samples-in-bihar-70-of-infan...
1•koolhead17•17m ago•0 comments

Avhyas: QGIS Plugin for Advanced Hyperspectral Image Analysis [video]

https://www.youtube.com/watch?v=HLvbnAyRPN4
1•marklit•17m ago•0 comments

One approach to a curated information diet

https://gabrielweinberg.com/p/one-approach-to-a-heavily-curated
2•twapi•20m ago•0 comments

Insurers retreat from AI cover as risk of multibillion-dollar claims mounts

https://www.ft.com/content/abfe9741-f438-4ed6-a673-075ec177dc62
1•rinze•20m ago•0 comments

Circle Flake

1•dxrko619•21m ago•0 comments

Pixar Early Days – Never-Before-Seen Interview with Steve Jobs, 1996 [video]

https://www.youtube.com/watch?v=R0XmBKsRJF8
1•one_and_zero•22m ago•0 comments

Show HN: I Built it because you Hate CSS

https://ogblocks.dev/
1•ItsKaranKK•22m ago•1 comments

Iran's Capital Is Moving. The Reason Is an Ecological Catastrophe

https://www.scientificamerican.com/article/irans-capital-has-run-out-of-water-forcing-it-to-move/
3•bookofjoe•24m ago•1 comments

Show HN: Search tool for "Ask HN: What Are You Working On?"

https://nthesis.ai/public/hn-working-on
2•osigurdson•27m ago•0 comments

JOPA: Java compiler in C++, Jikes modernized to Java 6 with Claude

https://github.com/7mind/jopa
3•pshirshov•32m ago•1 comments

The first-ever common language for cannabis and hemp aromas

https://phys.org/news/2025-11-common-language-cannabis-hemp-aromas.html
2•PaulHoule•32m ago•0 comments

Experimental evidence of effects of LLM versus web search on depth of learning

https://academic.oup.com/pnasnexus/article/4/10/pgaf316/8303888?login=false
1•taubek•33m ago•0 comments

The Why of Lisa G. U. I. – Andrew's Web-Log

https://blog.yaros.ae/the-why-of-lisa-g-u-i/
2•rbanffy•34m ago•1 comments

Are consumers just tech debt to Microsoft?

https://birchtree.me/blog/are-consumers-just-tech-debt-to-microsoft/
2•ingve•34m ago•1 comments

Ukrainians Reportedly Open Fire as Territorial Battalion Panics and Flees

https://www.trenchart.us/p/outgunned-ukrainian-territorials
1•vinnyglennon•37m ago•0 comments

Is Dark Mode Better for Your Eyes?

https://calgaryfamilyeyedoctors.com/is-dark-mode-better-for-your-eyes/
1•andrewvc•39m ago•0 comments

Webb First to Show 4 Dust Shells 'Spiraling' Apep, Limits Long Orbit

https://science.nasa.gov/missions/webb/webb-first-to-show-4-dust-shells-spiraling-apep-limits-lon...
1•buildbot•39m ago•0 comments

Go on an AI Detox

https://spin.atomicobject.com/go-on-ai-detox/
2•ingve•40m ago•0 comments

Graphics API is irrelevant [video]

https://www.youtube.com/watch?v=xNX9H_ZkfNE
1•chii•43m ago•0 comments

Guide of recommended best practices for I18next

https://intlayer.org/blog/nextjs-internationalization-using-next-i18next
3•intlayer_org•46m ago•1 comments

New Costco Gold Star Members Also Get a $40 Digital Costco Shop Card

https://www.bleepingcomputer.com/news/security/new-costco-gold-star-members-also-get-a-40-digital...
3•fleahunter•49m ago•1 comments

Four-Fifths of the Population Now Live in Urban Areas

https://www.newscientist.com/article/2504873-four-fifths-of-the-worlds-population-now-live-in-urb...
2•skx001•51m ago•0 comments

Central U.S. Manufacturing Activity Accelerates

https://www.wsj.com/economy/central-u-s-manufacturing-activity-accelerates-b7565a1a
1•skx001•52m ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•7mo ago

Comments

LegNeato•7mo ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•7mo ago
Surprisingly, it seems this project just supports Spir-V and PTX, but not DXIL or AMDGCN.

I say surprisingly, because I'd expect Rust support to be more mature than Zig's.

lostmsu•7mo ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•7mo ago
I am a complete noob in GPU but is AMDGCN the older generation with the new one being RDNA? If you generate a binary for AMDGCN, will it run on the newest cards?

Also, I though that these GPU ISAs were "proprietary". I wonder how reliable the binary generation can be.

AliChraghi•7mo ago
AMD ISAs are changing for almost every generation so LLVM[1] continues to keep the architecture name "amdgcn" and handle the variation based on the model flag (e.g., -mcpu=gfx1030 for RDNA2, -mcpu=gfx1100 for RDNA3).

> I though that these GPU ISAs were "proprietary"

PTX spec[2] is publicly available but the actual hardware assembly (SASS) is not. Although i believe Nsight allows you to view it.

1. https://llvm.org/docs/AMDGPUUsage.html#processors

2. https://docs.nvidia.com/cuda/parallel-thread-execution

imtringued•7mo ago
If LLVM can target AMD GPUs what exactly prevents AMD and ROCm from supporting all the damn GPUs?

At this point I'm convinced that the real problem with AMD GPUs isn't necessarily the compilers (although they do produce mediocre code) or even the hardware itself, but some crappy C++ driver code that can't handle running graphics and compute at the same time. The datacenter GPUs never had to run graphics in the first place, so they are safe.

slavik81•7mo ago
In my experience, the compiler, compute drivers, and HIP runtime work fine for all modern AMD GPUs. The only parts of the stack that don't run on all GPUs are the math and AI libraries. And that is mostly because AMD isn't building and testing those libraries for unsupported GPUs. The actual work required to enable functional support was straightforward enough that I ported them myself when packaging the libraries for Debian. Though, I had a lot of help on the testing.

See the Debian Trixie Supported GPU list: https://salsa.debian.org/rocm-team/community/team-project/-/...

SomaticPirate•7mo ago
While I admire the work of hobbyists it still looks like C/C++ will be the default until a GPU vender makes the decision to support these libraries.

From my understanding, Vulkan and OpenGL are nice but the true performance lies in the specific toolkits (ie CUDA, Metal).

Wrapping the vendor provided frameworks is liable to break and that isn't tenable for someone who wants to do this on a professional basis.

pjmlp•7mo ago
They also miss that on CUDA's case it is an ecosystem.

Actually it is C, C++, Fortran, OpenACC and OpenMP, PTX support for Java, Haskell, Julia, C#, alongside the libraries, IDE tooling and GPU graphical debugging.

Likewise Metal is plain C++14 plus extensions.

On the graphics side, HLSL dominates, following by GLSL and now slang. There are then MSL, PSSL and whatever NVN uses.

By the way, at GTC NVIDIA announced going all in with Python JIT compilers for CUDA, with feature parity with existing C++ tooling. There is now a new IR for doing array programming, Tile IR.

dismalaf•7mo ago
I don't quite get this comment.

This is supposed to be used in place of CUDA, HIP, Metal, Vulkan, OpenGL, etc... It's targeting the hardware directly so doesn't need to be supported as such.

The site also seems to clearly state it's a work in progress. It's just an interesting blog post...

slowmovintarget•7mo ago
The Zig compiler can compile C, though.