(no title)
al_borland | 3 days ago
Also, what happens to the stability and security of my phone after they let an LLM loose on the entire code base for a weekend?
There are 1.5 billion iPhones out there. It’s not a place to play fast and loose with bleeding edge tech known for hallucinations and poor architecture.
teeray|3 days ago
They are trained on everything, and as a result write code like the Internet average developer.
okanat|2 days ago
Great UIs are written by above average or even exceptional developers. Such experience is tied to the real-life reasoning and combining unique years-long human experience of interacting with the world. You need true general intelligence for that.
unknown|2 days ago
[deleted]
martinpw|2 days ago
charcircuit|2 days ago
Before post training (GPT3 2020 class models). Post training makes it no longer act like the average.
rescbr|3 days ago
If you direct it to do a specific task to find memory and cpu optimization points, based on perf metrics, then it’s a completely different world.
jfim|3 days ago
I asked Claude to find all the valid words on a Boggle board given a dictionary and it wrote a simple implementation that basically tried to search for every single word on the board. Telling it to prune the dictionary first by building a bit mask of the letters in each word and on the board and then checking if the word is even possible to have on the board gave something like a 600x speedup with just a simple prompt of what to do.
That does assume that one has an idea of how to optimize though and what are the bottlenecks.
robinwassen|3 days ago
A handwritten c implementation would most likely be better, but there is so much to gain from just slaughtering the abstraction bloat it does not really matter.