Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
mkbosmans
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
mkbosmans
1mo ago
If you capture the heat from the burning, e.g. to generate electricity, then that can save burning oil/gas/coal instead. Furthermore, the landfill will usually also generate gasses like methane, which need to be burned off too.
2.
▲
by
mkbosmans
5mo ago
Nobody says they have no limitations. The question is are those limitation fundamental, i.e. can we expect improvement, say within a year.
3.
▲
by
mkbosmans
6mo ago
No need for radical changes. def visit_bf(g): n, children = g yield n if children: iterators = [iter(visit_df(c)) for c in children] while iterators: try: yield next(iterators[0])
4.
▲
by
mkbosmans
6mo ago
Well, the article says that the effect of the impact was much larger than the scientists expected. That doesn't really give a lot of confidence in how good we are at predicting these things.
5.
▲
by
mkbosmans
6mo ago
I'm sorry, that second reference was actually for the 3.5ULP variant. The 1 ULP is here: https://github.com/shibatch/sleef/blob/master/src/libm/sleef...
6.
▲
by
mkbosmans
6mo ago
One of the ways that the classics can be improved is not to take the analytic ideal coefficients and approximate them to the closest floating point number, but rather take those ideal coefficients as a starting point for a search of slightl
7.
▲
by
mkbosmans
6mo ago
That's not just a good prediction—it is literally already happening right now!
8.
▲
by
mkbosmans
6mo ago
Nothing on that list has been named that way by Euler himself of course.
9.
▲
by
mkbosmans
7mo ago
That seems to be due to he microcontroller using its pins in duplex. There is indeed no radiation being emitted in that case, just the lamp and rotation. https://news.ycombinator.com/item?id=46979936
10.
▲
by
mkbosmans
1y ago
I saw that you used `float z;` to later use `z` instead of the constant `0.`. You can also apply that to get a zero vector: `vec3 y;` and use `y` in place of `p-p`. It seems that leaving the obsession behind some more can save another byte.
11.
▲
by
mkbosmans
1y ago
Another two bytes found (I think) (d==0.?K*.01*h:c-c) could become (d>0.?.0:.01)*K*h
12.
▲
by
mkbosmans
1y ago
Especially in HPC there are lots of workloads that do not benefit from SMT. Such workloads are almost always bottlenecked on either memory bandwidth or vector execution ports. These are exactly the resources that are shared between the si
13.
▲
by
mkbosmans
1y ago
Sort of niche indeed. In addition to needing SMT to get full performance, there were a lot of other small details you needed to get right on Xeon Phi to get close to the advertised performance. Think of AVX512 and the HBM. For practical ap
14.
▲
by
mkbosmans
1y ago
I'm not sure what the OS on the X32 (or the Midas M32 sister model for that matter) is from factory. The higher end Midas Pro consoles do definitely run on Linux though.
15.
▲
by
mkbosmans
2y ago
It is the performance win for similar looking results that I find improbable. For a box blur to look like gaussian blur, you would need multiple passes. Even though each pass is now O(1) instead of O(n) (with n the blur radius), due to ca
16.
▲
by
mkbosmans
2y ago
That link is not a box filter, as it still uses weights to approximate a gaussian convolution kernel. It just uses some special hardware to do less texture fetches. But that is a constant 2x improvement over the full 1D convolution, not t
17.
▲
by
mkbosmans
2y ago
Do browsers really use a box filter to approximate a gaussian blur? That seems implausible to me, as they produce pretty different looking blurs.
18.
▲
by
mkbosmans
2y ago
I noticed the blur only "sees" the underlying pixels directly below the glass surface. Any pixels outside that box, but within the blur radius do not get used in the gaussian filter. Probably the edge pixels are just repeated.
19.
▲
by
mkbosmans
2y ago
Why do you say a tritone substitution turns it in a II-bII-I? Can it be as easily said to be II-#I-I? In that case it would be C#.
20.
▲
by
mkbosmans
2y ago
This looks to me like actual correct usage of the term exponential. Surprisingly correct usage of that term is rare, even in technical writing. Let's say each dimensions added has a finite set of N possible values. Then for k dimension
21.
▲
by
mkbosmans
2y ago
Yes, I think it is valid usage. Why do you think usage of the term _curse of dimensionality_ is different in ML?
22.
▲
by
mkbosmans
2y ago
Nothing requires an ESOP to skip on a separate retirement fund for employees and expect them to retire from their share of the investment. In the contrary, I expect the owners of an ESOP are very much in favor of having a well managed separ
23.
▲
by
mkbosmans
2y ago
It is not an unconstrained optimization problem. The constraints in which the company operates might result in a feasible region where even the most profitable point is still a net loss. Those constraints may of course be self-imposed, like
24.
▲
by
mkbosmans
2y ago
> get paid like you should for a job like that Does that happen very often though?
25.
▲
by
mkbosmans
3y ago
I do agree about the virtues of a resume that shows that it has been put together with care and attention. But don't forget that while coding, the IDE, compiler, or whatever will correct your spelling mistakes in a very short feedback
26.
▲
by
mkbosmans
3y ago
I think that is unique to Gitlab though. For example Azure DevOps will rebase the branch for you when completing a pull request.
27.
▲
by
mkbosmans
3y ago
The big difference between adding the first `== true` to `if (x)` and adding more is that for a bare `x` you need more context to know whether the expression inside the `if` is of boolean type or something that will implicitly be casted to
28.
▲
by
mkbosmans
3y ago
That's doable with the Python interface to GnuCash. I hacked together a little script that sucks out invoice data out of a register file and creates PDFs for new ones using a LaTeX template. My wife uses it for her business, mostly wit
29.
▲
by
mkbosmans
4y ago
VORtech | Scientific Software Engineer | 24-40h | ONSITE Delft, NL We support both government institutions in modelling critical infrastructure (think rail transport, storm surge defense, power grid) and multinationals in bringing their res
30.
▲
by
mkbosmans
4y ago
> Unlike using either underflow exceptions or subnormals, the use of flush-to-zero and denormals-are-zero > is acceptable only in the programs where computation errors do not matter at all, such as games. That is not true. FTZ and DA
More ›