Viewing profile — walki
walki
HN member- Joined
- Fri, Feb 05, 2016, 5:04 PM UTC
- HN karma
- 175
- Public activity
- 31 items
- HN profile
- View on Hacker News ↗
About walki
No profile information was provided.
Recent public activity
-
comment
Comment #41498348
I feel like the NT kernel is in maintenance only mode and will eventually be replaced by the Linux kernel. I submitted a Windows kernel bug to Microsoft a few years ago and even th…
-
comment
Comment #38856732
Microsoft's %Appdata% directory is a security nightmare in my opinion. Ideally applications should only have access to their own directories in %Appdata% by default. I recently cam…
-
comment
Comment #28219137
> For performance, can’t you “just” have a swap-endianness instruction in your CPU Yes, most CPUs have special instructions for swapping between little and big endian byte arrangem…
-
comment
Comment #28219049
> not sure if this is still the case though No this is not the case anymore. Nowadays support for unaligned memory accesses is very good on ARM and most other CPU architectures. On…
-
comment
Comment #28218952
> it’s good for software robustness that file formats and hardware use different endianness, as it forces you to read things byte-by-byte rather than lazily assuming you can just r…
-
comment
Comment #25628818
What's interesting to note though is that I tried marking pointers __restrict__ in the performance critical sections in 2 of my C++ projects and the assembly generated by Clang was…
-
comment
Comment #25625581
OK thanks, indeed Clang is able to generate better assembly using __restrict__. And -O3 generates the same assembly as -O3 -fstrict-aliasing (which is not as good as __restrict__).…
-
comment
Comment #25625239
> C compilers have to assume that pointers to memory locations can overlap, unless you mark them __restrict... What I don't fully understand is: "GCC has the option -fstrict-aliasi…
-
comment
Comment #25468050
> Has anyone tried machine learning on this or the Graviton2? I have not done any machine learning on AWS Graviton2 CPUs but I ran many other CPU benchmarks on Graviton2 CPUs and o…
-
comment
Comment #24168750
They also asked for the VAT number of the company...
-
comment
Comment #24168737
Yes, I am based in Europe. If this was EU's fault then why didn't any of the other cloud vendors have this requirement?
-
comment
Comment #24166964
I have personally used a large number of cloud compute services: AWS, packet, Alibaba, Digital Ocean, nimbix, Azure, Oracle, ... I still use all of these services from time to time…
-
comment
Comment #24018959
> The facts: we gain almost nothing by having tiktok around. We lose nothing by banning it, and gain a little bit of buffer against possible threats like election meddling, data mi…
-
comment
Comment #22955988
> It's worth pointing out how extremely far ahead Apple seems to be in terms of CPU power... I agree that Apple's ARM CPUs are very competitive on simple scalar instructions and me…
-
comment
Comment #22832088
> Net result: they do not. For my use case (Clojure/JVM and ClojureScript compilation), compile times did not get shorter. There seemed to be a slight improvement, but it was below…
-
comment
Comment #22074313
I absolutely agree with this. The author has spent an insane amount of time to build all this stuff and instead of getting recognition and/or being payed adequately he is getting s…
-
comment
Comment #19689605
I absolutely think you made the right decision! I look up to you because you are not just another random math professor producing papers that no one ever reads. Instead you take a …
-
comment
Comment #18864129
For many packages it is difficult to get packaged for all Linux distributions. Hence if your package does not get packaged for a particular Linux distribution users can still insta…
-
comment
Comment #18706513
> #aargh Many system programmers will think this line is commented out. Indeed what a nightmare!
-
comment
Comment #18045864
No garbage collection.
-
comment
Comment #17278790
> I've recently dropped out of highschool and I've been considering two options: promptly returning to school and finishing my degree or dedicating time to self-educate via the int…
-
comment
Comment #17260016
Gnome has never been hosted on GitHub!
-
comment
Comment #17225816
Agreed, this is ridiculous.
-
comment
Comment #15351944
> ... Glibc are evidently not the best The GNU GCC compiler and the glibc are actually the 2 GNU projects I like most. If you are interested in high performance you won't find any …
-
comment
Comment #15330595
> How does, e.g., POWER8 compare? (And POWER9, soon?) POWER8 is not well suited for HPC workloads as their vector instructions (VMX/AltiVec) are only 128-bit wide vs Intel's latest…