That’s like (at least) third GPU-related project named Triton
On the other hand, it is not uncommon for the exiled old guard to form new companies, teams, products and realize their vision under new management. It is not like their knowledge and experience gets literally purged.
Specific change to ToS: https://codeberg.org/Codeberg/org/commit/96fac426a32d1ba91ff... > 7. You must not share projects that mostly consist of code written by "generative AI"-tools (including services such as Claude,…
True, and even selling token price may not be illustrative of what it actually costs them to provide the service. Tokens may be sold at a loss if majority of spenders are running agents 24/7 The industry and users moves…
One thing that I tried was porting an old and obscure 32-bit VST plugin from PowerPC to modern architectures
Any recommendations for non-typescript-based coding TUI harnesses/agents other than Codex? Given that Codex is open source someone should've built an untethered client?
Please consider adding `cargo watch` - that would be a killer feature!
/* * Check if 1M context is disabled via environment variable. * Used by C4E admins to disable 1M context for HIPAA compliance. */ export function is1mContextDisabled(): boolean { return…
Super-relatable. Now that I think about it, most of my advice starts something like "Here's what you're gonna do..." Wait, that itself sounds like a problem, but how do I fix it...
You are correct, that was an uneducated guess on my part. I just glanced at the IR which was different for some attributes (nounwind vs mustprogress norecurse), but the resulting assembly is 100% identical for every…
Probably LLVM runs different sets of optimization passes for C and C++. Need to look at the IR, or assembly to know exactly what happens.
Sure, he is one of biggest advocates for it, and yet he was quite clear that it is not yet possible for him to do his actual research in Lean. Quoting one of the recent papers (2020): > With current technology, it would…
I share your fascination with proof assistants and formal verification, but the reality is that I am yet to see an actual mathematician working on frontier research who is excited about formalizing their ideas, or…
Understanding IMO is "developing a correct mental model of a concept". Some heuristics of correctness: Feynman: "What I cannot build. I do not understand" Einstein: "If you can't explain it to a six year old, you don't…
> more than 1,000,000 lines of Lean 4 code and concluding with a QED. Usually the point of the proof is not to figure out whether a particular statement is true (which may be of little interest by itself, see Collatz…
Before Church there was Peano, and before Peano there was Grassmann > It is rather well-known, through Peano's own acknowledgement, that Peano […] made extensive use of Grassmann's work in his development of the axioms.…
What would you suggest as a reference problem (a benchmark of sorts) to try to play with formal methods for someone with just a bit of formal verification background but not in the field of software verification? Can…
What do you mean exactly by "error-tolerance"? Is it like, each node is wrapped into a result type, that you have to match against each time you visit it, even though you know for a fact, that it is not empty or…
I certainly hope so. I wonder, what is the actual blocker right now? I'd assume that LLMs are still not very good with specifications and verifcation languages? Anyone tried Datalog, TLA+, etc. with LLMs? I suppose that…
LLVM makes it so much easier to build a compiler - it's not even funny. Whenever I use it, I feel like I'm just arranging some rocks on a top of a pyramid.
What language do you use parser combinators in, and what kind of grammar do you parse usually? Nom was terribly verbose and unergonomic even by Rust's standards. Haskell's Megaparsec/Parsec is good but yeah, it's…
Does it support sending and executing commands to the panes like tmux does? like this: tmux send-keys -t 0:1.1 "ls" Enter edit: well, yes, you can: zellij action write-chars ls zellij action write 10
That "itch" is exactly what I meant, lol! And I agree! I'd definitely give Rust a try. Playing around with types and traits until they click is genuinely addictive - it feels like solving a puzzle or something
More information is needed to give proper advice: - Do you like filling out the type annotations in Python (making sure linter check passes)? Do you like TYPES in general? - Do you like working with memory (crushing…
I remember Arc randomly rewriting my bookmarks using some kind of summarization model or something like that, it also sometimes changed the name of downloaded files reinterpreting their names. Maybe it is related…
That’s like (at least) third GPU-related project named Triton
On the other hand, it is not uncommon for the exiled old guard to form new companies, teams, products and realize their vision under new management. It is not like their knowledge and experience gets literally purged.
Specific change to ToS: https://codeberg.org/Codeberg/org/commit/96fac426a32d1ba91ff... > 7. You must not share projects that mostly consist of code written by "generative AI"-tools (including services such as Claude,…
True, and even selling token price may not be illustrative of what it actually costs them to provide the service. Tokens may be sold at a loss if majority of spenders are running agents 24/7 The industry and users moves…
One thing that I tried was porting an old and obscure 32-bit VST plugin from PowerPC to modern architectures
Any recommendations for non-typescript-based coding TUI harnesses/agents other than Codex? Given that Codex is open source someone should've built an untethered client?
Please consider adding `cargo watch` - that would be a killer feature!
/* * Check if 1M context is disabled via environment variable. * Used by C4E admins to disable 1M context for HIPAA compliance. */ export function is1mContextDisabled(): boolean { return…
Super-relatable. Now that I think about it, most of my advice starts something like "Here's what you're gonna do..." Wait, that itself sounds like a problem, but how do I fix it...
You are correct, that was an uneducated guess on my part. I just glanced at the IR which was different for some attributes (nounwind vs mustprogress norecurse), but the resulting assembly is 100% identical for every…
Probably LLVM runs different sets of optimization passes for C and C++. Need to look at the IR, or assembly to know exactly what happens.
Sure, he is one of biggest advocates for it, and yet he was quite clear that it is not yet possible for him to do his actual research in Lean. Quoting one of the recent papers (2020): > With current technology, it would…
I share your fascination with proof assistants and formal verification, but the reality is that I am yet to see an actual mathematician working on frontier research who is excited about formalizing their ideas, or…
Understanding IMO is "developing a correct mental model of a concept". Some heuristics of correctness: Feynman: "What I cannot build. I do not understand" Einstein: "If you can't explain it to a six year old, you don't…
> more than 1,000,000 lines of Lean 4 code and concluding with a QED. Usually the point of the proof is not to figure out whether a particular statement is true (which may be of little interest by itself, see Collatz…
Before Church there was Peano, and before Peano there was Grassmann > It is rather well-known, through Peano's own acknowledgement, that Peano […] made extensive use of Grassmann's work in his development of the axioms.…
What would you suggest as a reference problem (a benchmark of sorts) to try to play with formal methods for someone with just a bit of formal verification background but not in the field of software verification? Can…
What do you mean exactly by "error-tolerance"? Is it like, each node is wrapped into a result type, that you have to match against each time you visit it, even though you know for a fact, that it is not empty or…
I certainly hope so. I wonder, what is the actual blocker right now? I'd assume that LLMs are still not very good with specifications and verifcation languages? Anyone tried Datalog, TLA+, etc. with LLMs? I suppose that…
LLVM makes it so much easier to build a compiler - it's not even funny. Whenever I use it, I feel like I'm just arranging some rocks on a top of a pyramid.
What language do you use parser combinators in, and what kind of grammar do you parse usually? Nom was terribly verbose and unergonomic even by Rust's standards. Haskell's Megaparsec/Parsec is good but yeah, it's…
Does it support sending and executing commands to the panes like tmux does? like this: tmux send-keys -t 0:1.1 "ls" Enter edit: well, yes, you can: zellij action write-chars ls zellij action write 10
That "itch" is exactly what I meant, lol! And I agree! I'd definitely give Rust a try. Playing around with types and traits until they click is genuinely addictive - it feels like solving a puzzle or something
More information is needed to give proper advice: - Do you like filling out the type annotations in Python (making sure linter check passes)? Do you like TYPES in general? - Do you like working with memory (crushing…
I remember Arc randomly rewriting my bookmarks using some kind of summarization model or something like that, it also sometimes changed the name of downloaded files reinterpreting their names. Maybe it is related…