Earlier quoted context omitted.
I don't think research papers normally come with a simple portable way for others to rerun the calculations. At some point the code is complicated enough to be impossible to just proofread without running it.
> I don't think research papers normally come with a simple portable way for others to rerun the calculations. ...which, for situations where a readable/narrated test suite is entirely possible, is awful.
Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
21–30 of 64 posts
Re: Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
#22> boffins willing to go on the record as describing Microsoft's work as "unreliable" and perhaps even "fraudulent." > 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…
Re: Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
#23Re: Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
#24Was pleasantly surprised to see the exact bug in here, in a "The Register" article of all places. Legg showed that fixing the bug invalidates the research. Seems Microsoft is responding to a clear problem with a vague dismissal. 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.
Re: Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
#25```
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..
Re: Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
#26Was pleasantly surprised to see the exact bug in here, in a "The Register" article of all places. Legg showed that fixing the bug invalidates the research. Seems Microsoft is responding to a clear problem with a vague dismissal. 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.
The Register is a tech paper that is modelled on various British tabloids (daily mail, the sun). Sometimes it's humor, sometimes it's real news and occasionally they even break a new story.
Re: Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
#27Earlier quoted context omitted.
I was surprised to see it - I thought "boffin" was good-natured but highly irreverent, like "nerd". But I can't imagine any publication writing the headline, "Computer nerd claims Microsoft's supposed quantum leap does not compute."
It's typical of the Register. They always use the word "boffin" for expert/scientist. It's a british word used to describe a clever person.
Re: Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
#28Love the word "boffin". I think we should use "pundit" more often as well.
Re: Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
#29Love the word "boffin". I think we should use "pundit" more often as well.
I was surprised to see it - I thought "boffin" was good-natured but highly irreverent, like "nerd". But I can't imagine any publication writing the headline, "Computer nerd claims Microsoft's supposed quantum leap does not compute."
Re: Boffin claims Microsoft’s “quantum leap” is invalid due to “basic Python errors”
#30You’d really think they’d really check everything and cross their t’s after their previous issues in marjorana fermion QC. I generally have a very high opinion of MS research, but this is getting a bit embarrassing.