Did FixedPoint arithmetic change recently? I'm fairly certain that this
using FixedPointNumbers: UFixed
a = UFixed{UInt8, 8}(1.0)
b = UFixed{UInt8, 8}(0.65)
@show a b a*b
> a = UFixed8(1.0)
> b = UFixed8(0.651)
> a * b = UFixed8(0.647)
was not the case until I Pkg.updated today. It's a bit of a problem for my use case...