liyujie
2025-08-28 786ff4f4ca2374bdd9177f2e24b503d43e7a3b93
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
/*
 * Copyright (C) 2010 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 
package benchmarks.regression;
 
/**
 * Many of these tests are bogus in that the cost will vary wildly depending on inputs.
 * For _my_ current purposes, that's okay. But beware!
 */
public class MathBenchmark {
    private final double d = 1.2;
    private final float f = 1.2f;
    private final int i = 1;
    private final long l = 1L;
 
    // NOTE: To avoid the benchmarked function from being optimized away, we store the result
    // and use it as the benchmark's return value. This is good enough for now but may not be in
    // the future, a smart compiler could determine that the result value will depend on whether
    // we get into the loop or not and turn the whole loop into an if statement.
 
    public double timeAbsD(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.abs(d);
        }
        return result;
    }
 
    public float timeAbsF(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.abs(f);
        }
        return result;
    }
 
    public int timeAbsI(int reps) {
        int result = i;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.abs(i);
        }
        return result;
    }
 
    public long timeAbsL(int reps) {
        long result = l;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.abs(l);
        }
        return result;
    }
 
    public double timeAcos(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.acos(d);
        }
        return result;
    }
 
    public double timeAsin(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.asin(d);
        }
        return result;
    }
 
    public double timeAtan(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.atan(d);
        }
        return result;
    }
 
    public double timeAtan2(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.atan2(3, 4);
        }
        return result;
    }
 
    public double timeCbrt(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.cbrt(d);
        }
        return result;
    }
 
    public double timeCeil(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.ceil(d);
        }
        return result;
    }
 
    public double timeCopySignD(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.copySign(d, d);
        }
        return result;
    }
 
    public float timeCopySignF(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.copySign(f, f);
        }
        return result;
    }
 
    public double timeCopySignD_strict(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = StrictMath.copySign(d, d);
        }
        return result;
    }
 
    public float timeCopySignF_strict(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = StrictMath.copySign(f, f);
        }
        return result;
    }
 
    public double timeCos(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.cos(d);
        }
        return result;
    }
 
    public double timeCosh(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.cosh(d);
        }
        return result;
    }
 
    public double timeExp(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.exp(d);
        }
        return result;
    }
 
    public double timeExpm1(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.expm1(d);
        }
        return result;
    }
 
    public double timeFloor(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.floor(d);
        }
        return result;
    }
 
    public int timeGetExponentD(int reps) {
        int result = i;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.getExponent(d);
        }
        return result;
    }
 
    public int timeGetExponentF(int reps) {
        int result = i;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.getExponent(f);
        }
        return result;
    }
 
    public double timeHypot(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.hypot(d, d);
        }
        return result;
    }
 
    public double timeIEEEremainder(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.IEEEremainder(d, d);
        }
        return result;
    }
 
    public double timeLog(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.log(d);
        }
        return result;
    }
 
    public double timeLog10(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.log10(d);
        }
        return result;
    }
 
    public double timeLog1p(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.log1p(d);
        }
        return result;
    }
 
    public double timeMaxD(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.max(d, d);
        }
        return result;
    }
 
    public float timeMaxF(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.max(f, f);
        }
        return result;
    }
 
    public int timeMaxI(int reps) {
        int result = i;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.max(i, i);
        }
        return result;
    }
 
    public long timeMaxL(int reps) {
        long result = l;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.max(l, l);
        }
        return result;
    }
 
    public double timeMinD(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.min(d, d);
        }
        return result;
    }
 
    public float timeMinF(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.min(f, f);
        }
        return result;
    }
 
    public int timeMinI(int reps) {
        int result = i;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.min(i, i);
        }
        return result;
    }
 
    public long timeMinL(int reps) {
        long result = l;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.min(l, l);
        }
        return result;
    }
 
    public double timeNextAfterD(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.nextAfter(d, d);
        }
        return result;
    }
 
    public float timeNextAfterF(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.nextAfter(f, f);
        }
        return result;
    }
 
    public double timeNextUpD(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.nextUp(d);
        }
        return result;
    }
 
    public float timeNextUpF(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.nextUp(f);
        }
        return result;
    }
 
    public double timePow(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.pow(d, d);
        }
        return result;
    }
 
    public double timeRandom(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.random();
        }
        return result;
    }
 
    public double timeRint(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.rint(d);
        }
        return result;
    }
 
    public long timeRoundD(int reps) {
        long result = l;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.round(d);
        }
        return result;
    }
 
    public int timeRoundF(int reps) {
        int result = i;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.round(f);
        }
        return result;
    }
 
    public double timeScalbD(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.scalb(d, 5);
        }
        return result;
    }
 
    public float timeScalbF(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.scalb(f, 5);
        }
        return result;
    }
 
    public double timeSignumD(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.signum(d);
        }
        return result;
    }
 
    public float timeSignumF(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.signum(f);
        }
        return result;
    }
 
    public double timeSin(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.sin(d);
        }
        return result;
    }
 
    public double timeSinh(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.sinh(d);
        }
        return result;
    }
 
    public double timeSqrt(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.sqrt(d);
        }
        return result;
    }
 
    public double timeTan(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.tan(d);
        }
        return result;
    }
 
    public double timeTanh(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.tanh(d);
        }
        return result;
    }
 
    public double timeToDegrees(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.toDegrees(d);
        }
        return result;
    }
 
    public double timeToRadians(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.toRadians(d);
        }
        return result;
    }
 
    public double timeUlpD(int reps) {
        double result = d;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.ulp(d);
        }
        return result;
    }
 
    public float timeUlpF(int reps) {
        float result = f;
        for (int rep = 0; rep < reps; ++rep) {
            result = Math.ulp(f);
        }
        return result;
    }
}