-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rem
returns zero for negative float input on ARMv7
#134
Comments
I added the following workaround into "src/normed.jl". if !signbit(signed(unsafe_trunc(UInt, -12.345)))
# a workaround for 32-bit ARMv7 (issue #134)
function _unsafe_trunc(::Type{T}, x::AbstractFloat) where {T}
unsafe_trunc(T, unsafe_trunc(typeof(signed(zero(T))), x))
end
end Although it took much more time than expected, all tests were passed on ARM Cortex-A53.:tada: julia> versioninfo()
Julia Version 1.0.3
Platform Info:
OS: Linux (arm-linux-gnueabihf)
CPU: ARMv7 Processor rev 4 (v7l)
WORD_SIZE: 32
LIBM: libopenlibm
LLVM: libLLVM-6.0.0 (ORCJIT, cortex-a53) Test Summary: | Pass Total
normed | 62954923 62954923
Test Summary: | Pass Total
fixed | 31886 31886
Test Summary: | Pass Total
traits | 251 251
Testing FixedPointNumbers tests passed |
Since 8-/16-bit types are converted via julia> unsafe_trunc(Int32, Float64(typemax(UInt32)))
2147483647 The x86 has the similar problem, but the problem does not really arise because the conversion to FixedPointNumbers.jl/src/fixed.jl Lines 105 to 108 in 9ca0d9d
|
To check the modification for the issue #129, I ran the tests on a 32-bit ARMv7 system (RPi 2 Model B v1.2). And then, I faced a problem with
rem
(%
).The cause is the behavior of
unsafe_trunc
.FixedPointNumbers.jl/src/normed.jl
Line 103 in 70ae1d6
FixedPointNumbers.jl/src/normed.jl
Lines 204 to 205 in 70ae1d6
(The problem occurs not only on v1.0.3 but also on v1.0.5 and v1.2.0. I have not tried the 64-bit.)
Although the behavior of
unsafe_trunc
may not be what we want, this is not a bug.https://docs.julialang.org/en/v1/base/math/#Base.unsafe_trunc
However, I don't think it is good to make the
rem
users aware of the internalunsafe_trunc
.The workaround is to convert the value to
Signed
temporarily as shown above.BTW, the behavior of
Normed
'srem
, which is specified by the above tests seems to be not intuitive. (Since I know the inside ofNormed
, I think the behavior is reasonable, though.)So, I think it is another option to eliminate the tests for negative float inputs, i.e. make it an undefined behavior.
The text was updated successfully, but these errors were encountered: