Skip to content

Commit 59e434d

Browse files
simonbyrneJeffBezanson
authored andcommittedAug 10, 2017
Deprecate hex2num and num2hex (#22088)
See #22031.
1 parent f87dea2 commit 59e434d

File tree

9 files changed

+17
-61
lines changed

9 files changed

+17
-61
lines changed
 

‎base/deprecated.jl

+17
Original file line numberDiff line numberDiff line change
@@ -1346,6 +1346,7 @@ end
13461346
@deprecate srand(filename::AbstractString, n::Integer=4) srand(read!(filename, Array{UInt32}(Int(n))))
13471347
@deprecate MersenneTwister(filename::AbstractString) srand(MersenneTwister(0), read!(filename, Array{UInt32}(Int(4))))
13481348

1349+
13491350
# PR #21974
13501351
@deprecate versioninfo(verbose::Bool) versioninfo(verbose=verbose)
13511352
@deprecate versioninfo(io::IO, verbose::Bool) versioninfo(io, verbose=verbose)
@@ -1645,6 +1646,22 @@ end
16451646
# PR #23187
16461647
@deprecate cpad(s, n::Integer, p=" ") rpad(lpad(s, div(n+strwidth(s), 2), p), n, p) false
16471648

1649+
# PR #22088
1650+
function hex2num(s::AbstractString)
1651+
depwarn("hex2num(s) is deprecated. Use reinterpret(Float64, parse(UInt64, s, 16)) instead.", :hex2num)
1652+
if length(s) <= 4
1653+
return reinterpret(Float16, parse(UInt16, s, 16))
1654+
end
1655+
if length(s) <= 8
1656+
return reinterpret(Float32, parse(UInt32, s, 16))
1657+
end
1658+
return reinterpret(Float64, parse(UInt64, s, 16))
1659+
end
1660+
1661+
@deprecate num2hex(x::Union{Float16,Float32,Float64}) hex(reintepret(Unsigned, x), sizeof(x)*2)
1662+
@deprecate num2hex(n::Integer) hex(n, sizeof(n)*2)
1663+
1664+
16481665
# END 0.7 deprecations
16491666

16501667
# BEGIN 1.0 deprecations

‎base/docs/helpdb/Base.jl

-20
Original file line numberDiff line numberDiff line change
@@ -428,19 +428,6 @@ original string, otherwise they must be from distinct character ranges.
428428
"""
429429
eachmatch
430430

431-
"""
432-
num2hex(f)
433-
434-
Get a hexadecimal string of the binary representation of a floating point number.
435-
436-
# Examples
437-
```jldoctest
438-
julia> num2hex(2.2)
439-
"400199999999999a"
440-
```
441-
"""
442-
num2hex
443-
444431
"""
445432
truncate(file,n)
446433
@@ -1301,13 +1288,6 @@ false
13011288
"""
13021289
isempty
13031290

1304-
"""
1305-
hex2num(str)
1306-
1307-
Convert a hexadecimal string to the floating point number it represents.
1308-
"""
1309-
hex2num
1310-
13111291
"""
13121292
InexactError(name::Symbol, T, val)
13131293

‎base/exports.jl

-2
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,6 @@ export
338338
gamma,
339339
gcd,
340340
gcdx,
341-
hex2num,
342341
hypot,
343342
imag,
344343
inv,
@@ -377,7 +376,6 @@ export
377376
nextpow2,
378377
nextprod,
379378
numerator,
380-
num2hex,
381379
one,
382380
oneunit,
383381
powermod,

‎base/floatfuncs.jl

-14
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,6 @@ maxintfloat() = maxintfloat(Float64)
3737

3838
isinteger(x::AbstractFloat) = (x - trunc(x) == 0)
3939

40-
num2hex(x::Float16) = hex(bitcast(UInt16, x), 4)
41-
num2hex(x::Float32) = hex(bitcast(UInt32, x), 8)
42-
num2hex(x::Float64) = hex(bitcast(UInt64, x), 16)
43-
44-
function hex2num(s::AbstractString)
45-
if length(s) <= 4
46-
return bitcast(Float16, parse(UInt16, s, 16))
47-
end
48-
if length(s) <= 8
49-
return bitcast(Float32, parse(UInt32, s, 16))
50-
end
51-
return bitcast(Float64, parse(UInt64, s, 16))
52-
end
53-
5440
"""
5541
round([T,] x, [digits, [base]], [r::RoundingMode])
5642

‎base/intfuncs.jl

-2
Original file line numberDiff line numberDiff line change
@@ -584,8 +584,6 @@ function hex(x::Unsigned, pad::Int, neg::Bool)
584584
String(a)
585585
end
586586

587-
num2hex(n::Integer) = hex(n, sizeof(n)*2)
588-
589587
const base36digits = ['0':'9';'a':'z']
590588
const base62digits = ['0':'9';'A':'Z';'a':'z']
591589

‎doc/src/stdlib/numbers.md

-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ Base.Math.significand
5858
Base.Math.exponent
5959
Base.complex(::Complex)
6060
Base.bswap
61-
Base.num2hex
62-
Base.hex2num
6361
Base.hex2bytes
6462
Base.bytes2hex
6563
```

‎test/floatfuncs.jl

-6
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,6 @@ for elty in (Float16,Float32,Float64)
3939
@test !isinteger(elty(NaN))
4040
end
4141

42-
# num2hex, hex2num
43-
for elty in (Float16,Float32,Float64), _ = 1:10
44-
x = rand(elty)
45-
@test hex2num(num2hex(x)) x
46-
end
47-
4842
# round
4943
for elty in (Float32,Float64)
5044
x = rand(elty)

‎test/intfuncs.jl

-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ end
123123

124124
@test hex(12) == "c"
125125
@test hex(-12, 3) == "-00c"
126-
@test num2hex(1243) == (Int == Int32 ? "000004db" : "00000000000004db")
127126

128127
@test base(2, 5, 7) == "0000101"
129128

‎test/numbers.jl

-14
Original file line numberDiff line numberDiff line change
@@ -387,20 +387,6 @@ end
387387
@test base(12,typemin(Int128)) == "-2a695925806818735399a37a20a31b3534a8"
388388
@test base(12,typemax(Int128)) == "2a695925806818735399a37a20a31b3534a7"
389389

390-
@test hex2num("3ff0000000000000") == 1.
391-
@test hex2num("bff0000000000000") == -1.
392-
@test hex2num("4000000000000000") == 2.
393-
@test hex2num("7ff0000000000000") == Inf
394-
@test hex2num("fff0000000000000") == -Inf
395-
@test isnan(hex2num("7ff8000000000000"))
396-
@test isnan(hex2num("fff8000000000000"))
397-
@test hex2num("3f800000") == 1.0f0
398-
@test hex2num("bf800000") == -1.0f0
399-
@test hex2num("7f800000") == Inf32
400-
@test hex2num("ff800000") == -Inf32
401-
@test isnan(hex2num("7fc00000"))
402-
@test isnan(hex2num("ffc00000"))
403-
404390
# floating-point printing
405391
@test repr(1.0) == "1.0"
406392
@test repr(-1.0) == "-1.0"

2 commit comments

Comments
 (2)

nanosoldier commented on Aug 11, 2017

@nanosoldier
Collaborator

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

nanosoldier commented on Aug 11, 2017

@nanosoldier
Collaborator

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan

Please sign in to comment.