2019-03-02 21:46:04 +00:00
|
|
|
const std = @import("../std.zig");
|
2017-12-24 03:08:53 +00:00
|
|
|
const math = std.math;
|
2019-02-08 23:18:47 +00:00
|
|
|
const expect = std.testing.expect;
|
2018-10-26 18:59:58 +00:00
|
|
|
const maxInt = std.math.maxInt;
|
2017-06-16 08:26:10 +00:00
|
|
|
|
2019-05-01 06:15:57 +00:00
|
|
|
// Returns whether x has a normalized representation (i.e. integer part of mantissa is 1).
|
2018-01-25 09:10:11 +00:00
|
|
|
pub fn isNormal(x: var) bool {
|
2017-06-16 08:26:10 +00:00
|
|
|
const T = @typeOf(x);
|
|
|
|
switch (T) {
|
2018-06-29 23:44:54 +00:00
|
|
|
f16 => {
|
|
|
|
const bits = @bitCast(u16, x);
|
|
|
|
return (bits + 1024) & 0x7FFF >= 2048;
|
|
|
|
},
|
2017-06-16 08:26:10 +00:00
|
|
|
f32 => {
|
|
|
|
const bits = @bitCast(u32, x);
|
2017-12-22 05:50:30 +00:00
|
|
|
return (bits + 0x00800000) & 0x7FFFFFFF >= 0x01000000;
|
2017-06-16 08:26:10 +00:00
|
|
|
},
|
|
|
|
f64 => {
|
|
|
|
const bits = @bitCast(u64, x);
|
2018-10-26 18:59:58 +00:00
|
|
|
return (bits + (1 << 52)) & (maxInt(u64) >> 1) >= (1 << 53);
|
2017-06-16 08:26:10 +00:00
|
|
|
},
|
|
|
|
else => {
|
|
|
|
@compileError("isNormal not implemented for " ++ @typeName(T));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 18:36:33 +00:00
|
|
|
test "math.isNormal" {
|
2019-02-08 23:18:47 +00:00
|
|
|
expect(!isNormal(math.nan(f16)));
|
|
|
|
expect(!isNormal(math.nan(f32)));
|
|
|
|
expect(!isNormal(math.nan(f64)));
|
|
|
|
expect(!isNormal(f16(0)));
|
|
|
|
expect(!isNormal(f32(0)));
|
|
|
|
expect(!isNormal(f64(0)));
|
|
|
|
expect(isNormal(f16(1.0)));
|
|
|
|
expect(isNormal(f32(1.0)));
|
|
|
|
expect(isNormal(f64(1.0)));
|
2017-06-16 08:26:10 +00:00
|
|
|
}
|