Edit: Oh, The Register is a true tech paper, guess the name makes sense for that. Got mixed up cause there are a bunch of general papers called something Register.
> Microsoft insisted its work is sound and in early June 2026 announced Majorana 2, a "next-generation topological quantum chip" it developed with the help of its own agentic AI.
AI hallucinates quantum computing bullshit as well or better than humans can hallucinate quantum computing bullshit. Couldn't have a better combination of technologies helping each other out.
```
return xr.apply_ufunc(
lambda x: (x - x[::-1]) / 2,
conductance,
input_core_dims=[dims],
output_core_dims=[dims],
vectorize=True,
)
```Reading the article about how they filtered and cherry-picked specific regions, I got curious about the actual asymmetry computation, so I looked up the source code. Looking at it, they seem to have used memory offsets as if they were physical coordinates, but they're only looking at the array index order, not the actual values. x[::-1] isn't measuring physical coordinates; it's just reversing the array. So it seems this bias axis mentioned in the article only forms when things are symmetric. But in typical numerical computations, isn't it pretty common to reverse arrays like this? In this case, there must be a reason why the physical coordinates change. Should we be verifying invariants here? Sometimes I see people who find these kinds of issues and I think they're really amazing. Even after reading the article, tracing it, and debugging it, I kept wondering what the problem was..
gadders•1h ago
Anthony-G•1h ago
happytoexplain•1h ago
SAI_Peregrinus•1h ago
cpncrunch•1h ago
MobiusHorizons•50m ago
wiml•1h ago
gh02t•26m ago
sensanaty•1h ago
devin•17m ago