Viewing profile — waltpad
waltpad
HN member- Joined
- Mon, Apr 20, 2020, 9:59 PM UTC
- HN karma
- 59
- Public activity
- 77 items
- HN profile
- View on Hacker News ↗
About waltpad
No profile information was provided.
Recent public activity
-
comment
Comment #23821191
Ooops, I didn't mean Xeon PHI, I meant an older design with many small x86 cores. Xeon PHI on the other hand was the first host of AVX-512 instruction set. Sorry.
-
comment
Comment #23800621
The programming model is not very flexible at the lowest level: one has to create all the software infrastructure to communicate with the GPU (which boils down to sending commands …
-
comment
Comment #23796336
The point I was trying to make is that if you have to rely on runtime type information, you might as well use sum types in a more strongly typed language, where the scope of the co…
-
comment
Comment #23795780
I think another interesting question is, how would you handle the return value of such function in your code? You would have to either: - test for the type of that value in order t…
-
comment
Comment #23795221
Disclaimer: I am not a HW designer, I could very well be wrong. It is true that there are tasks where threading matters, but still require a CPU rather than a GPU. I wonder however…
-
comment
Comment #23778147
> t's really hard to get away from getting data in JSON these days. It's ubiquitous. Yes, I agree with that. It's a neat format if you have small pieces of information to move arou…
-
comment
Comment #23742677
> 100MB of doubles encoded as JSON. That sounds like a very bad use case for JSON. I would be surprised if your program wasn't more efficient with an ad-hoc binary format for that …
- comment
- comment
-
comment
Comment #23731408
> fails at logic more than at poetry This is purely subjective. Your expectations in Poetry might be different from those of other people or even specialists. I am not particularly…
-
comment
Comment #23721883
Sadly, AFAIK, BLAS hasn't been updated to use generics. It would be so nice to have support for integer vector/matrix operations in there (not that it would require generics to hav…
-
comment
Comment #23721860
If you have a look at the different fortran implementations of BLAS gemm (matrix multiplication), you'll see that the transposed matrix cases are treated specifically. In fact, IIR…
-
comment
Comment #23716540
Oh, I understand. I suppose it makes sense, if for instance one needs to store a bunch of parameters somewhere, it might as well be a JSON file.
-
comment
Comment #23716498
The difference is that your DB is the FS, and each JSON file is an individual record. You're not storing each table in a single JSON document.
-
comment
Comment #23716444
Maybe because it was tempting: JSON is fairly easy to handle, very portable, and when you look at a JSON document, it's straightforward to think about querying it, and thus DB, alt…
-
comment
Comment #23716357
I think that, oddly enough, the point of that project is to use the JSON format as the DB storage format, not as an export option. Just from the look of it (I don't know either pro…
-
comment
Comment #23716308
That's a very strange idea: JSON is basically structured data, like XML, it's nice for documents with deeply nested structures. The main issue is that contrarily to a DB, any modif…
-
comment
Comment #23638782
I wonder how the clipboard API could be fixed. I suppose that the current scheme is that apps are monitoring paste events, and when it happens have a look at the clipboard for copi…
-
comment
Comment #23626781
Well, if copies may be borrowed, as it is the case in Rust, I suppose that a type-linear function, as I called it, doesn't have to be computationally linear. The `mult` example we …
-
comment
Comment #23625599
I don't think these technologies are related: Java Generics is based on subtyping, however Haskell doesn't support subtyping (afaik).
-
comment
Comment #23625102
Seriously though, the Opera web browser has this functionality built in, but it's a "toggle" back to top, by just clicking on the tab title. It's very useful on web sites like HN, …
-
comment
Comment #23598664
Sorry, I got confused on the meaning linear. As explained in the other answer, it's possible to implement the power function which is "type-linear" on each argument, but that funct…
-
comment
Comment #23598092
What's the provided GPU solution for ARM based machines? Do Apple SoCs contain a GPU?
- comment
-
comment
Comment #23587560
> Probably not much. I hope so: this article assumes that for normal citizens, monitoring seems to be a problem, so it's only natural to expect the police forces to get upset for t…