hvenev
12 hours ago
In `libnvidia-nvvm.so` the string `cutlass` appears right after `Memory Dependence Analysis` and `memdep`. Perhaps it acts as an optimization attribute of some sort, where the compiler is allowed to make assumptions about the kernel's behavior that are not valid in general?
jdright
11 hours ago
yes, that is a very usual way (known practices) of vendors applying specific optimizations for known things.
It is also part of the benchmarks game they play against each other.
MBCook
9 hours ago
The link is long dead and the Wayback machine doesn’t have a copy.
But in 2001 ATI was caught applying optimizations to Quake 3 when someone realized if you renamed the executable from “quake” to “quack” the score dropped a ton. It was a big scandal.
I know that’s common now but that wasn’t a thing that was done at the time.
atomicnumber3
8 hours ago
Was it a scandal at the time? My understanding of how per-game card-driver optimizations work today is:
1. AAAA Game Studio shits out another unoptimized clunker
2. nvidia considers it a reputational risk if games run at 30 FPS on a 5090
3. They go in, look at the perverse ways the game misuses rendering primitives, and then hacks shit in to make whatever bad things they're doing less bad.
As a gamer, this seems fine to me and i generally blame the AAAA devs for being bad at their jobs or AAAA studio leads for being ok shipping unoptimized messes.
antonvs
7 hours ago
> As a gamer, this seems fine to me
As a software developer, it almost certainly has a bad effect on the ecosystem long term. "Hacks shit in" is the very definition of technical debt, and that has a cost that someone, somewhere is going to have to pay in some form.
RHSeeger
7 hours ago
I can't reply to the person that replied to you, so
> You’re looking as a dev, but the reality is that a consumer cannot see technical debt.
The consumer can't _see_ technical debt, but they sure as heck can be impacted by it.
- Technical debt means the code base is harder to work with later. So fixes/enhancements take longer to make it into the code (and sometimes never can)
- This particular type of technical debt means the code by the game developers sets precedent, and the next developer may us it as an example. So the amount of code incorrectly using the api grows faster over time
strbean
6 hours ago
For some reason HN sometimes hides the reply button on leaf comments. I think this only happens for very new comments.
You can click the timestamp ("X minutes ago") to view the comment without context, and reply from there.
monocasa
5 hours ago
I think it's a anti flamewar tactic to put the brakes on quick replies.
charcircuit
6 hours ago
>the next developer may us it as an example
These hacks are game specific, so another developer wouldn't get them.
RHSeeger
4 hours ago
The way the API was used incorrectly "worked", and the game didn't see the negative impact of it because it was "fixed away". And then the incorrect usage is used again on another game and doesn't get the "fixed away" benefit. And the same incorrect usage could happen over and over because "it works".
lsaferite
5 hours ago
The next developer at that company that uses or references the crappy code for another project would still have the issue, but not get the benefit of the down-stream GPU vendor hacks to fix the buggy game.
user
an hour ago
SideQuark
2 hours ago
> technical debt, and that has a cost that someone, somewhere is going to have to pay in some form
There is no reason anyone has to pay each and every iota of technical debt. Plenty of things with technical debt hit end of life and no one ever looks in that code again. I suspect most technical debt goes this way - in program, program never updates (or minor updates), then dies.
Your claim would require every piece of technical debt in anything ever (code, buildings, cars, anywhere) has to be removed before the thing goes end of life or goes into a mode where it never is changed. That seems ludicrous to me.
cyanydeez
an hour ago
Does anyone talk about how technical debt often just gets thrown into the garbage so we can buy fancy new technical crap, and its what pays for most of yalls jobs.
user
3 hours ago
monkpit
7 hours ago
You’re looking as a dev, but the reality is that a consumer cannot see technical debt. If the studio churns out a game, the vendor sprinkles on some optimizations, people play it and move on, then the tech debt just vaporizes into the void. It’s not real at that point.
wtetzner
4 hours ago
Just because a consumer can't see technical debt doesn't mean they aren't paying for it. Most game studios continue to re-use code, so it doesn't just "vaporize" into the void.
8n4vidtmkvmk
44 minutes ago
I'm pretty sure I pay this debt with lost FPS and every time I glitch through the floor into the nether.
btbuilder
8 hours ago
I believe the driver silently swapped the textures to lower quality ones that looked worse but gave a performance boost.
toast0
5 hours ago
> Was it a scandal at the time?
Yes. My understanding was it was optimized by reducing precision or something to a visibly apparent degree.
It's different if the driver changes things in ways such that rendered output is the same or at least imperceptibly different. I think there's also a lot more communication between gpu makers and game/engine developers these days; plus a lot more frequent updates.
KronisLV
4 hours ago
> My understanding was it was optimized by reducing precision or something to a visibly apparent degree.
If only we had that sort of a control over rendering for every game ourselves - since projects like OptiScaler at least let us claw back control over sometimes proprietary upscaling and even framegen, but it's not quite enough: https://github.com/optiscaler/OptiScaler
I'd also mention Lossless Scaling here, though it still only works on upscaling and framegen and with worse methods, but at least works for most games out there: https://store.steampowered.com/app/993090/Lossless_Scaling/
I want to be able to freely toggle between different types of AA and SSAO and reflections and lighting and LOD systems and various shader effects (especially things like chromatic aberration or motion blur) and ray tracing and all that, instead of having to hope that the console port that's offered to me has those abilities in the graphics menu and that whoever is making the decisions hasn't decided that actually "low" graphics (that would at least run smoothly) would look too bad for the game's brand image or something.
mcculley
5 hours ago
I was surprised to see “AAAA”. I didn’t know there were 4 As now.
“AAAA Game Studio shits out another unoptimized clunker” seems a paradoxical statement to me. I would have thought “AAAA” meant “highly resourced” game company. Does it just mean high revenue? Lots of players?
bigfishrunning
3 hours ago
AAAA isn't a real thing, it's a memey joke based on a press release by a microsoft studio that was closed before ever releasing a single game
vinceguidry
5 hours ago
The more money you throw at an effort, the more gets flushed out as waste, and the harder it is to maintain quality. Pretty universal across business.
wtetzner
3 hours ago
AAA/AAAA just means "how much money was spent developing the game". High cost doesn't automatically equal high quality. In fact, it seems after a certain point to mean the opposite.
mwpmaybe
5 hours ago
High price...
itsTyrion
7 hours ago
it rendered in lower quality, IIRC lower textures / much more aggressive mipmapping and/or LOD
gmueckl
6 hours ago
Except that if a developer has that kind of market pull, nVidida will gladly help those devs with getting it right. They are excellent at maintaining developer relations.
IAmBroom
8 hours ago
In at least one past version of Windows (circa 1990s), if you tried to replace the default web browser of IE with another choice you were given an Open File dialog window to choose the executable.
Funny quirk, though: that particular window wouldn't show files named firefox.exe. It would accept that as typed input, if you were at the correct folder, but the file listing omitted that particular file.
Maybe it was mozilla.exe; it was a long time ago. But that was the discovery that pushed me off IE forever.
lstamour
8 hours ago
I vaguely remember that being the start of the browser prompts to set your current browser as the default. It was so hard to just configure that they had to build a way to set it within the browser.
You saw that again in more modern times when Microsoft removed support for the APIs they provided to set browser defaults, forcing browser makers to write step by step instructions on what to click to set the default browser.
I believe they walked that back, but it left such a bad taste that I switched my installation of Windows from default mode to EU mode in order to avoid it. And come to think of it, I haven’t used my windows machine for much outside of AI in about 6 months.
But Microsoft is not alone in these sort of defaults games - every OS or browser maker, Apple, Google, Firefox, wants to create moats so they can more easily monetize your usage of a product. I never thought I’d prefer the business model of free to play games, where they just outright ask you for money and have to keep finding new ways to entertain instead of relying on hard to change defaults and selling your data.
charcircuit
5 hours ago
An app being able to see itself as the default browser sounds like such a dangerous API, especially if it can be done silently without the user realizing it.
hinkley
9 hours ago
There are bugs that certain games rely on and features that some don’t use. I’m currently trying to optimize a library out of spite. (I want it to work better than the competitor that caused me a lot of problems on a recent project). The amount of conditional logic around what is essentially a function to increment a value is breathtaking.
gatlin
9 hours ago
Do you have any kind of example you're able to share? I don't mean to take your IP but I want to see this breathtaking vista.
amiga386
8 hours ago
A simple example would be that the function glGetString(GL_EXTENSIONS) crashes the original Quake engine and many licensees, because it's expecting no more than a 256 character string.
The driver looks to see if a known old game is calling it, and if it's one known to crash, it returns no more than 256 characters, and likely also puts all the _old_ extensions that the game is likely to know and react to in the string.
There are also all sorts of games that called APIs in a particular order or set particular options, because they represented a "fast path" at the time, and now they don't, but if you're that program, then yes they do.
Ultimately, this clutter is what let do the development of the Vulcan API, to stop games second-guessing graphics APIs which themselves second-guess the games.
hinkley
9 hours ago
To avoid doxxing myself: In a deep call stack it’s possible to end up sanitizing inputs multiple times and in different ways.
A frequent example I’ve encountered is web frameworks that have to keep checking for escaped text because they didn’t write it in horizontal layers where you know for sure that all inputs have been scrubbed when they reach this function but not that one. So the same functions get called with data that comes from your team and from customers. Reuse is tricky.
hamburglar
an hour ago
“Checking for escaped text” is the sort of nonsense that tells you you’re dealing with amateur developers.
MichaelZuo
9 hours ago
It’s really strange for established companies to waste their credibility on games like that…
IAmBroom
9 hours ago
Never underestimate how much human ego will control actions.
MangoToupe
9 hours ago
I was pretty young at the time, but I recall the market for graphics being a lot wider open at the time Quake was released. Remember 3dfx? They produced the Voodoo series of graphics cards. They're barely a distant memory now.
Quake was also the standard for a game that was willing to fully exploit the hardware of the time.
high_na_euv
11 hours ago
Thats very likely imo