Viewing profile — olaulaja
olaulaja
HN member- Joined
- Mon, Aug 10, 2015, 6:40 PM UTC
- HN karma
- 87
- Public activity
- 22 items
- HN profile
- View on Hacker News ↗
About olaulaja
No profile information was provided.
Recent public activity
-
comment
Comment #45279608
Not a word on compute or interconnect speeds. All this really says is they stuck some HBM on a chip.
-
comment
Comment #44994723
It can be rather difficult, mostly due to the occlusion calculations having to be conservative (must count visible things as visible, allowed to count invisible as visible, or thin…
-
comment
Comment #44953388
Just write a 10 TB hard disk full of plaintext mantras and let that bad boy spin at its usual ~5k rpm for a cost effective 50 PB of mantras per minute. Or go MAAS and write a few t…
-
comment
Comment #43734992
I'd say `x * a + (x * x) * b + (x * x * x) * c` is likely faster (subject to the compiler being reasonable) than `((((x * c) * x + b) * x) + a) * x` because it has a shorter longes…
-
comment
Comment #42555629
Did you explore microbatch sizes below 100? Curious about how far this can be pushed and what happens when approaching the limit microbatch size of 1.
-
comment
Comment #40571715
Baseline time to grok something looks to be around 1000x normal training time so make that $20k per attempt. Probably takes a while too. Their headline number (50x faster than base…
-
comment
Comment #38155214
For a bit of reference, a full frame of Crysis (benchmark scene) was around 300k vertices or triangles (memory is fuzzy), so 3-10 log piles depending on which way my memory is off …
-
comment
Comment #37197554
The framing here is a little unfair, its DLSS that does not support AMD hardware, not the other way around. This is clearly a deliberate decision by Nvidia. Meanwhile AMD/FSR suppo…
-
comment
Comment #36971489
Sounds like using the wrong metric, the upscaled image should be compared against the original full resolution one, not the downscaled one. Obviously you can't know what the full r…
-
comment
Comment #36940473
That list is only really useful for major styles that are well known/tagged, early SD versions knew a list of artists _much_ longer and more relevant than that. (some of the styles…
-
comment
Comment #36937170
The thing is, most styles don't have names, only artists using them. If you remove artist names from the training data, you lose the ability to describe those styles, including as …
-
comment
Comment #36665335
You have chroma and luma the wrong way around, chroma is color and luma is light intensity. Chroma is still the thing being subsampled. I've never really noticed effects from chrom…
-
comment
Comment #36330062
So I took a look at the actual shader , and it really should not require anything powerful (decade old, worst-you-can-get hardware might struggle). A much more likely explanation (…
-
comment
Comment #35981059
Not quite ELI5 and there's a few partially overlapping answers around already but here goes. The key part is the attention mechanism, as title of the paper may have spoiled. It wor…
-
comment
Comment #31812852
If consciousness is binary like you state, we can hypothetically remove parts of it until we reach some arbitrarily small part after the removal of which the remainder is no longer…
-
comment
Comment #31812502
The problem here is the definition of real, which is ultimately a matter of perspective. What is simulated rain to an external observer is real rain to one that only sees the simul…
-
comment
Comment #29332340
Based on some quick* testing using z-order instead of going row by row ends up taking 1-10% less space. Most images were on the lower end but I didn't run into any taking more spac…
-
comment
Comment #27573118
Having a few false negatives in the control group shouldn't really matter since that would only make the groups more similar and hide any differences that exist rather than halluci…
-
comment
Comment #19450080
We have pieces of code at (gaming related) work that have very tight, and carefully thought out, error bounds (think 4 ULP) and can certainly break if float rounding doesn't work a…
-
comment
Comment #18949519
I don't have a good article on this but I'd assume the rocket delivers the satellites to an orbit slightly below the target one. The satellites can then move to the final orbit on …
-
comment
Comment #12264828
Collision detection and response are the hard parts and they are poorly suited for GPU implementation. Some specific cases (fluids, particles, maybe cloth) that don't require these…
-
comment
Comment #10036479
Vulkan doesnt really expose tile based rendering. In the demo the scene is split into tiles and since the geometry is static they can prepare commands for gpu execution once for ea…