John Sully
John Sully
./runtest and ./runtest-cluster are the two main ones. Theres Snap internal CI that runs more, the public github CI is a bit limited because the free machines only have 2...
It's probably horrible practice, but I do it to set a signal to 0xFF regardless of its length. The rest of the code uses it unsigned.
Signal(max=depth, ~0) produces the same incorrect code. What's the right way to initialize a signal to all 1s?
I think it would have to be 2**(ceil(log2(depth))-1 right? -1 or ~0 is much easier, and should be supported for this case in my opinion.
@bsmanit This is going to get implemented in this PR: https://github.com/valkey-io/valkey/pull/707 If it does not address your concerns please let me know in the PR so I can adjust it.
@nbolton This is the main reason I had to stop using Synergy. I was an early adopter of 4K and this was problematic back in 2014 when I opened the...
Hey Paul, I pushed a fix to the crashing test.
It's actually the way SIMD was initially implemented in machines such as the CDC Star. In anycase WASM will run on machines with varying capabilities. It would be nice to...
Understanding the history is an important part of understanding why SIMD operations are organized the way they are. The Cray 1 went to fixed length SIMD because it was a...
@eholk Original vector machines had a close match of CPU speed with Memory speed so they loaded values directly from memory. When CPU speed started to outrun memory the fix...