Entropy
andrew-hoyer.com
Entropy
1–10 of 32 posts
Re: Entropy
#2There are actually applications for such programs - software replacement for ECC memory.
Re: Entropy
#3Re: Entropy
#4Re: Entropy
#5Re: Entropy
#6Re: Entropy
#7Re: Entropy
#8Re: Entropy
#9What is interesting about this is how it forces one to deal with a lack of precision. Computers are inherently imprecise in many situations, leading to non-commutative multiplication. I wonder if a language like this would be helpful for programming with approximate processors. They are supposed to be much faster at a cost of precision.
Re: Entropy
#10What is interesting about this is how it forces one to deal with a lack of precision. Computers are inherently imprecise in many situations, leading to non-commutative multiplication. I wonder if a language like this would be helpful for programming with approximate processors. They are supposed to be much faster at a cost of precision.
Pedantic aside: I guess you mean non-associative multiplication? That is, ax(bxc) versus (axb)xc. Since rounding happens at different times, they can give different results. Floating point multiplication is indeed non-commutative as well, but that has to do with NaN handling, not imprecision.