1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
package test_internal
import "core:testing"
@(private="file")
not_const :: proc(v: $T) -> T { return v }
@(test)
abs_f16_const :: proc(t: ^testing.T) {
// Constant f16
testing.expect_value(t, abs(f16(0.)), 0.)
testing.expect_value(t, abs(f16(-0.)), 0.)
testing.expect_value(t, abs(f16(-1.)), 1.)
testing.expect_value(t, abs(min(f16)), max(f16))
testing.expect_value(t, abs(max(f16)), max(f16))
testing.expect_value(t, abs(f16(-.12)), .12)
// Constant f16le
testing.expect_value(t, abs(f16le(0.)), 0.)
testing.expect_value(t, abs(f16le(-0.)), 0.)
testing.expect_value(t, abs(f16le(-1.)), 1.)
testing.expect_value(t, abs(min(f16le)), max(f16le))
testing.expect_value(t, abs(max(f16le)), max(f16le))
testing.expect_value(t, abs(f16le(-.12)), .12)
// Constant f16be
testing.expect_value(t, abs(f16be(0.)), 0.)
testing.expect_value(t, abs(f16be(-0.)), 0.)
testing.expect_value(t, abs(f16be(-1.)), 1.)
testing.expect_value(t, abs(min(f16be)), max(f16be))
testing.expect_value(t, abs(max(f16be)), max(f16be))
testing.expect_value(t, abs(f16be(-.12)), .12)
}
@(test)
abs_f16_variable :: proc(t: ^testing.T) {
// Variable f16
testing.expect_value(t, abs(not_const(f16(0.))), 0.)
testing.expect_value(t, abs(not_const(f16(-0.))), 0.)
testing.expect_value(t, abs(not_const(f16(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f16))), max(f16))
testing.expect_value(t, abs(not_const(max(f16))), max(f16))
testing.expect_value(t, abs(not_const(f16(-.12))), .12)
// Variable f16le
testing.expect_value(t, abs(not_const(f16le(0.))), 0.)
testing.expect_value(t, abs(not_const(f16le(-0.))), 0.)
testing.expect_value(t, abs(not_const(f16le(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f16le))), max(f16le))
testing.expect_value(t, abs(not_const(max(f16le))), max(f16le))
testing.expect_value(t, abs(not_const(f16le(-.12))), .12)
// Variable f16be
testing.expect_value(t, abs(not_const(f16be(0.))), 0.)
testing.expect_value(t, abs(not_const(f16be(-0.))), 0.)
testing.expect_value(t, abs(not_const(f16be(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f16be))), max(f16be))
testing.expect_value(t, abs(not_const(max(f16be))), max(f16be))
testing.expect_value(t, abs(not_const(f16be(-.12))), .12)
}
@(test)
abs_f32_const :: proc(t: ^testing.T) {
// Constant f32
testing.expect_value(t, abs(f32(0.)), 0.)
testing.expect_value(t, abs(f32(-0.)), 0.)
testing.expect_value(t, abs(f32(-1.)), 1.)
testing.expect_value(t, abs(min(f32)), max(f32))
testing.expect_value(t, abs(max(f32)), max(f32))
testing.expect_value(t, abs(f32(-.12345)), .12345)
// Constant f32le
testing.expect_value(t, abs(f32le(0.)), 0.)
testing.expect_value(t, abs(f32le(-0.)), 0.)
testing.expect_value(t, abs(f32le(-1.)), 1.)
testing.expect_value(t, abs(min(f32le)), max(f32le))
testing.expect_value(t, abs(max(f32le)), max(f32le))
testing.expect_value(t, abs(f32le(-.12345)), .12345)
// Constant f32be
testing.expect_value(t, abs(f32be(0.)), 0.)
testing.expect_value(t, abs(f32be(-0.)), 0.)
testing.expect_value(t, abs(f32be(-1.)), 1.)
testing.expect_value(t, abs(min(f32be)), max(f32be))
testing.expect_value(t, abs(max(f32be)), max(f32be))
testing.expect_value(t, abs(f32be(-.12345)), .12345)
}
@(test)
abs_f32_variable :: proc(t: ^testing.T) {
// Variable f32
testing.expect_value(t, abs(not_const(f32(0.))), 0.)
testing.expect_value(t, abs(not_const(f32(-0.))), 0.)
testing.expect_value(t, abs(not_const(f32(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f32))), max(f32))
testing.expect_value(t, abs(not_const(max(f32))), max(f32))
testing.expect_value(t, abs(not_const(f32(-.12345))), .12345)
// Variable f32le
testing.expect_value(t, abs(not_const(f32le(0.))), 0.)
testing.expect_value(t, abs(not_const(f32le(-0.))), 0.)
testing.expect_value(t, abs(not_const(f32le(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f32le))), max(f32le))
testing.expect_value(t, abs(not_const(max(f32le))), max(f32le))
testing.expect_value(t, abs(not_const(f32le(-.12345))), .12345)
// Variable f32be
testing.expect_value(t, abs(not_const(f32be(0.))), 0.)
testing.expect_value(t, abs(not_const(f32be(-0.))), 0.)
testing.expect_value(t, abs(not_const(f32be(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f32be))), max(f32be))
testing.expect_value(t, abs(not_const(max(f32be))), max(f32be))
testing.expect_value(t, abs(not_const(f32be(-.12345))), .12345)
}
@(test)
abs_f64_const :: proc(t: ^testing.T) {
// Constant f64
testing.expect_value(t, abs(f64(0.)), 0.)
testing.expect_value(t, abs(f64(-0.)), 0.)
testing.expect_value(t, abs(f64(-1.)), 1.)
testing.expect_value(t, abs(min(f64)), max(f64))
testing.expect_value(t, abs(max(f64)), max(f64))
testing.expect_value(t, abs(f64(-.12345)), .12345)
// Constant f64le
testing.expect_value(t, abs(f64le(0.)), 0.)
testing.expect_value(t, abs(f64le(-0.)), 0.)
testing.expect_value(t, abs(f64le(-1.)), 1.)
testing.expect_value(t, abs(min(f64le)), max(f64le))
testing.expect_value(t, abs(max(f64le)), max(f64le))
testing.expect_value(t, abs(f64le(-.12345)), .12345)
// Constant f64be
testing.expect_value(t, abs(f64be(0.)), 0.)
testing.expect_value(t, abs(f64be(-0.)), 0.)
testing.expect_value(t, abs(f64be(-1.)), 1.)
testing.expect_value(t, abs(min(f64be)), max(f64be))
testing.expect_value(t, abs(max(f64be)), max(f64be))
testing.expect_value(t, abs(f64be(-.12345)), .12345)
}
@(test)
abs_f64_variable :: proc(t: ^testing.T) {
// Variable f64
testing.expect_value(t, abs(not_const(f64(0.))), 0.)
testing.expect_value(t, abs(not_const(f64(-0.))), 0.)
testing.expect_value(t, abs(not_const(f64(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f64))), max(f64))
testing.expect_value(t, abs(not_const(max(f64))), max(f64))
testing.expect_value(t, abs(not_const(f64(-.12345))), .12345)
// Variable f64le
testing.expect_value(t, abs(not_const(f64le(0.))), 0.)
testing.expect_value(t, abs(not_const(f64le(-0.))), 0.)
testing.expect_value(t, abs(not_const(f64le(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f64le))), max(f64le))
testing.expect_value(t, abs(not_const(max(f64le))), max(f64le))
testing.expect_value(t, abs(not_const(f64le(-.12345))), .12345)
// Variable f64be
testing.expect_value(t, abs(not_const(f64be(0.))), 0.)
testing.expect_value(t, abs(not_const(f64be(-0.))), 0.)
testing.expect_value(t, abs(not_const(f64be(-1.))), 1.)
testing.expect_value(t, abs(not_const(min(f64be))), max(f64be))
testing.expect_value(t, abs(not_const(max(f64be))), max(f64be))
testing.expect_value(t, abs(not_const(f64be(-.12345))), .12345)
}
|