HackerTrans
TopNewTrendsCommentsPastAskShowJobs

elphard

no profile record

comments

elphard
·vor 22 Tagen·discuss
Meta made $60 billion in profits last year; they can spend some of that to figure out how to protect children from harmful content on their platform.
elphard
·vor 2 Monaten·discuss
We should let them sleep with half a brain at a time like migrating birds.
elphard
·vor 5 Monaten·discuss
This is fantastic. Claude doesn't make it easy to inspect what it's sending - which would actually be really useful for refining the project-specific prompts.
elphard
·vor 6 Monaten·discuss
Thanks! That's an interesting approach for filtering new joiners.
elphard
·vor 6 Monaten·discuss
How difficult is it to get invited to join Lobsters?
elphard
·vor 6 Monaten·discuss
I like that you are treating peephole as a strict fallback after IR optimizations, with a tiny window and single pass. In a lot of compilers this stage turns into a junk drawer of pattern matches that quietly grow until no one remembers why half of them exist.

The opt_trace! hook is the underrated bit here. Once you start rewriting instruction sequences, knowing which patterns fire and how often on real programs is usually more valuable than another synthetic benchmark. Keeping it behind -O1 is a nice way to make sure you only pay for that complexity when users actually opt in.