Russ Cox

Results 47 issues of Russ Cox

Ignore.

In 2021 in #45964 we moved the minimum Linux kernel version to 2.6.32. There is a good summary from @baryluk about what we use from newer kernels at https://github.com/golang/go/issues/60792#issuecomment-1793329947. @mdempsky...

Proposal
Proposal-Accepted
release-blocker

Consider this transcript: ``` op g x = f x f=1 g 2 1 2 op f x = 1+x cannot define op f; it is a variable (f=0 to...

Our discussion about looping in Ivy made me also think about control flow generally. I wrote this code recently: ``` op (x i ai bi) firstmod (a b l r)...

I wrote `1 (f 2)[1]` earlier and was surprised that the [1] applies to `1 (f 2)` not just to `(f 2)`. This is however consistent with TryAPL, so I...

Food for thought. Not suggesting a specific change. I was using Ivy last night to understand some other math code. I wanted to reduce a homogenous linear equation problem Mx...

If you have: x := 1 _ = x x = 2 the spec allows this program and therefore the compilers accept it without comment. However, it would be nice...

Analysis