Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror

Comment GenAI is already in decline (Score 1) 60

With the latest METR and MIT studies showing no productivity benefits (and even declines), the technology getting more expensive every day (despite what companies say about inference costs being lower) because of diminishing returns to improve model quality, GenAI adoption is already in decline.

This could have some credibility one or two years ago. Nowadays it is another junk prediction in the line of the infamous AI 2027 report.

Comment Cool demo (Score 2) 15

And can even have some use cases. But in videogames? I don't think so. It can be interesting for concept, but if I add a dragon, I don't want it to ignore everything, I want some fight mechanics making the game interesting, and if I have to set them on the prompt, I can better program them in LUA. This will burn an immense amount of resources just to generate an uninteresting environment in 720p@24FPS that will only last "for a few minutes". You need a lot more for a videogame.

Comment BTW Rust does not prevent memory leaks (Score 1) 160

As explained in The Rust Programming Language book, Rust doesn't indeed prevent memory leaks (although it makes them difficult to achieve). What the language prevents (unless you use unsafe code) are memory errors like accessing dangling pointers, double free, etc. It also prevents data races, but not memory leaks.

Slashdot Top Deals

Remember, UNIX spelled backwards is XINU. -- Mt.

Working...