Viewing profile — maxwell86
maxwell86
HN member- Joined
- Fri, Dec 24, 2021, 8:12 PM UTC
- HN karma
- 321
- Public activity
- 156 items
- HN profile
- View on Hacker News ↗
About maxwell86
No profile information was provided.
Recent public activity
-
comment
Comment #33569743
> Accessing InfiniBand and GPUs directly become a problem. I use nvidia containers on HPC systems every day and accessing NICs, doing RDMA to GPUs, etc. "just works" and performs a…
-
comment
Comment #33376554
Yes. They should not have included any adapter at all. Those with older PSUs should have had to make a decision about whether they want an adapter or not, and then pick an adapter …
-
comment
Comment #33376534
TBH NVIDIA should just have not included any adapter at all.
-
comment
Comment #33376489
Agreed, not sure what other words to use instead. I think it would have been better for these cards to not have an adapter at all. I've added an EDIT to try to word this differentl…
-
comment
Comment #33376360
Thanks. I've added an EDIT to clarify that I am not speculating about whether the OP read the article, and that the only point of my comment is to set the record straight for those…
-
comment
Comment #33376333
> Other commenters are claiming that NVIDIA KNEW the adapter h Those refer to a PCI Express Forum issue that was opened about the connector drawing too much power, not the adapter.…
-
comment
Comment #33375163
> xactly for how they implemented and supply a 12V solution (which includes both the physical products they supply, and the messaging they've put out around it) which this article …
-
comment
Comment #33093848
That's the opposite of all other traffic rules in the UK. Cars stop on the left, which allow other cars to overtake them on the right.
-
comment
Comment #32980715
> Stand on the right of escalators This surprised me when visiting the UK. I actually expected people to stand on the "left" of the scalators - just like how they drive on the left…
-
comment
Comment #32953975
> How likely is it that any given node would be mapping out more than 2^64 bytes worth of virtual pages? In the Grace Hopper whitepaper, NVIDIA says that they connect multiple node…
-
comment
Comment #32917270
Do you have some scientific references on synchronous concurrency?
-
comment
Comment #32066099
The Rust module system is radically different from C and C++ and other similar languages in the embedded space. Every build system that has added support for Rust, which aren't man…
-
comment
Comment #32061746
Rust already has a GCC backend that can do all that. This post is about a new front-end.
-
comment
Comment #32061697
The rust compiler can already use GCC as a backend. So I don't see how this opens more platforms than that.
-
comment
Comment #32055646
If you only write to the lower 32-bit of the v0 register, which could be 1024 bit wide, that claims that the hardware somehow has to allocate a 1024-bit wide register to back those…
-
comment
Comment #32055543
This is not really a problem. While it is true that you can only use masks from v0, and this requires moving masks into v0 after calling a vector instruction, those moves don't act…
-
comment
Comment #32046368
> The elevation of the room where the rack is installed must be below 9,842 feet (3,000 meters). Why?
-
comment
Comment #31578650
> even if you have a PhD many will see you as "less than." Inside academia and outside of it. Inside academia you are not on a tenure track or similar, and will have to put up with…
-
comment
Comment #31570546
A person that works at Intel.
-
comment
Comment #31489140
Four times the price of fully unlimited 4G for a much better connection with more availability than 4G seems fair to me. If you don't need starlink, then don't get it. But if you h…
-
comment
Comment #31394403
> I severely doubt that std::for_each_n exists on GPU code. https://docs.nvidia.com/hpc-sdk/compilers/c++-parallel-algor... This is 4 years old. Been using it in production for the…
-
comment
Comment #31315247
It's ok to like OpenMP. What I disagree with is that it should be suggested to beginners as the way to parallelize their C++ programs. That's like telling a Javascript programmer t…
-
comment
Comment #31315196
> The "target" now makes the for-loop discussed a GPU or FPGA algorithm. Now what's strange about this is... you seemed to have known this already? So I've had difficulty making an…
-
comment
Comment #31305896
> It's normal C++ C++ is an ISO standard, you can use it _everywhere_, in space, in automotive, in aviation, in trains, in medical devices, _everywhere_. OpenMP is not C++, it is a…
-
comment
Comment #31304553
lol please no If you are using C++, and want to parallelize something, just add "std::execution::par" to your algorithms. Instead of writing "std::for_each(...)" just write "std::f…