HN user

krasin

3,826 karma

https://www.linkedin.com/in/ivan-krasin-0ba73ba/

Posts6
Comments860
View on HN

In the meantime, China is constructing nuclear cargo ships ([1], [2]) that will be able to transport 14,000 containers at full throttle (200MW) without a need to refuel for years.

Obviously, it's still not done, and yet to prove to be profitable, but their reactor design does suggest that they have a chance to make it work and replace a lot of CO2 emissions.

1. Original article, but paywall: https://www.scmp.com/news/china/science/article/3331031/chin...

2. Derivative (+based commentary), but no paywall: https://www.chosun.com/english/world-en/2025/11/07/MND3QUGUT...

I refer to the RDNA4 instruction set manual ([1]), page 90, Table 41. WMMA Instructions.

They support FP8/BF8 with F32 accumulate and also IU4 with I32 accumulate. The max matrix size is 16x16. For comparison, NVIDIA Blackwell GB200 supports matrices up to 256x32 for FP8 and 256x96 for NVFP4.

This matters for overall throughput, as feeding a bigger matrix unit is actually cheaper in terms of memory bandwidth, as the number of FLOPs grows O(n^2) when increasing the size of a systolic array, while the number of inputs/outputs as O(n).

1. https://www.amd.com/content/dam/amd/en/documents/radeon-tech...

2. https://semianalysis.com/2025/06/23/nvidia-tensor-core-evolu...

This sounds like a happy ending for the employees of Windsurf and a good deal for Cognition

The employees were robbed from having a big cash exit. Illiquid stock options from Windsurf were converted to illiquid stock options of Devin.

What's worse is that the well is now poisoned. I would advise against joining startups from now on, because I think that there's no upside for employees anymore.

This is just a fake product page to gauge interest.

From their "order" page:

UPERFECT Omega is currently in the concept stage and will soon be put into research and development.

Quote from the article:

With these innovations, the team fabricated a 1.09 cm2 flexible monolithic perovskite/CIGS tandem solar cell. Competing with top rigid counterparts, the device achieved an impressive stabilized efficiency of 24.6% (certified at 23.8%), one of the highest reported values for flexible thin-film solar cells to date.

After 320 hours of operation and 3,000 bending cycles at a radius of 1 cm, the device retained over 90% of its initial efficiency, demonstrating exceptional mechanical durability and long-term stability.

Slightly tangential, but what's the state of the art in auto routing and placement these days?

I always recommend quilter.ai: https://www.quilter.ai/ - they "eat" Kicad or Altium files, and produce autorouting and/or autoplacement. I tried them about 9 months ago and made a couple of boards that worked well.

DeepSeek R1 has 671B parameters. If you want to run at 8 bits/parameter (the native format for DeepSeek R1, in which it was trained, so the top performance possible for the model), one would need about 32 Blackhole p150a ([1]), which is around $42k and 10kW power consumption.

So, yes, you can run DeepSeek R1 on it, but there are cheaper options (if we only talk about inference).

1. https://tenstorrent.com/hardware/blackhole

Is this some joke? They use Llama 2 7B? What year is it?

They use llama2 to demonstrate that their compression method works. There are potential cases:

1. The method works on all / most LLMs. In this case, it does not matter on which model they demonstrated the effect.

2. The method only works on llama2, but not on other models. Given that they published the code, I expect that people will quickly test the method on many other models, so we will know that soon. And yet - there would be a scientific significance even if it works only on llama2, as it would mean that there's some special and good in that architecture.

But I would bet it's #1 - the method works on most of the models and they just picked whatever they had already had code bindings to, to save the effort.

Gemini Robotics 1 year ago

Relevant (upcoming) book, "AI for Robotics: Toward Embodied and General Intelligence in the Physical World" from one of the authors of RT-1 (Robotic Transformer) from Google DeepMind Robotics group: https://www.amazon.com/dp/B0DFLTZ4SQ?ref=ppx_yo2ov_dt_b_fed_...

I have not read it yet (it's being released in May), so can't give a true recommendation, but I did preorder it. The state of art is changing fast, and the book is expected to capture at least some snapshot of it.

With siblings of similar age, it's much harder in the first 2-3 years (external help is essential), but then the kids considerably shortcircuit to each other, so it becomes easier than having just one, constantly bored child.

Source: I am a father of two daughters with less than 2 years difference; and my brother is also less than 2 years apart from me. So, I lived my advice in both aspects: as a parent and as a child.

Yes and no. Jetson line (which Jetson AGX Orin is a part of) is also providing multi-camera support (with MIPI CSI-2 connectors) and other real-time / microcontroller stuff, as well as rugged options via partners.

I hope to see new Jetsons based on Blackwell sometime in 2026 (they tend to be slow to release those).

I generally agree with your analysis of the current state of art but strongly disagree with the overall conclusion of where it leads us.

I believe it will take on the order of 100M hours of training data of doing tasks in real world (so, not just Youtube videos), and much larger models than we have now to make general-purpose robotics working, but I also believe that this will happen.

I've saved your comment to my favorites and hope to revisit it in 10 years.

What is the new breakthrough in robotics that is gpu driven ? There are subsets of the overall problem that can be solved by a gpu (eg object detection) but the whole planning and control algo scheme seems to be more or less the same as it has been for the past decades. These typically involve non-convex optimization so not much gpu benefit.

In the past two years two very important developments appeared around imitation learning and LLMs. Some starting points for this rabbit hole:

1. HuggingFace LeRobot: https://github.com/huggingface/lerobot

2. ALOHA: https://aloha-2.github.io/

3. https://robotics-transformer2.github.io/

4. https://www.1x.tech/discover/1x-world-model

If models keep lasting ~year timescales could we ever see people going with ROM chips for the weights instead of memory?

Before ROM, there's a step where HBM for weights is replaced with Flash or Optane (but still high bandwidth, on top of the chip) and KV cache lives in SRAM - for small batch sizes, that would actually be decently cheap. In this case, even if weights change weekly, it's not a big deal at all.