blob: 5b1940a369a5666ac7a3611119301c03d5c5e6f7 (
plain)
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
|
#![warn(clippy::suboptimal_flops, clippy::imprecise_flops)]
#![allow(clippy::unnecessary_cast)]
// FIXME(f16_f128): add tests for these types when `powf` is available
fn main() {
let x = 3f32;
let _ = 2f32.powf(x);
//~^ suboptimal_flops
let _ = 2f32.powf(3.1);
//~^ suboptimal_flops
let _ = 2f32.powf(-3.1);
//~^ suboptimal_flops
let _ = std::f32::consts::E.powf(x);
//~^ suboptimal_flops
let _ = std::f32::consts::E.powf(3.1);
//~^ suboptimal_flops
let _ = std::f32::consts::E.powf(-3.1);
//~^ suboptimal_flops
let _ = x.powf(1.0 / 2.0);
//~^ suboptimal_flops
let _ = x.powf(1.0 / 3.0);
//~^ imprecise_flops
let _ = (x as f32).powf(1.0 / 3.0);
//~^ imprecise_flops
let _ = x.powf(3.0);
//~^ suboptimal_flops
let _ = x.powf(-2.0);
//~^ suboptimal_flops
let _ = x.powf(16_777_215.0);
//~^ suboptimal_flops
let _ = x.powf(-16_777_215.0);
//~^ suboptimal_flops
let _ = (x as f32).powf(-16_777_215.0);
//~^ suboptimal_flops
let _ = (x as f32).powf(3.0);
//~^ suboptimal_flops
let _ = (1.5_f32 + 1.0).powf(1.0 / 3.0);
//~^ imprecise_flops
let _ = 1.5_f64.powf(1.0 / 3.0);
//~^ imprecise_flops
let _ = 1.5_f64.powf(1.0 / 2.0);
//~^ suboptimal_flops
let _ = 1.5_f64.powf(3.0);
//~^ suboptimal_flops
macro_rules! m {
($e:expr) => {
5.5 - $e
};
}
let _ = 2f32.powf(1f32 + m!(2.0));
//~^ suboptimal_flops
// Cases where the lint shouldn't be applied
let _ = x.powf(2.1);
let _ = x.powf(-2.1);
let _ = x.powf(16_777_216.0);
let _ = x.powf(-16_777_216.0);
let x = 3f64;
let _ = 2f64.powf(x);
//~^ suboptimal_flops
let _ = 2f64.powf(3.1);
//~^ suboptimal_flops
let _ = 2f64.powf(-3.1);
//~^ suboptimal_flops
let _ = std::f64::consts::E.powf(x);
//~^ suboptimal_flops
let _ = std::f64::consts::E.powf(3.1);
//~^ suboptimal_flops
let _ = std::f64::consts::E.powf(-3.1);
//~^ suboptimal_flops
let _ = x.powf(1.0 / 2.0);
//~^ suboptimal_flops
let _ = x.powf(1.0 / 3.0);
//~^ imprecise_flops
let _ = x.powf(3.0);
//~^ suboptimal_flops
let _ = x.powf(-2.0);
//~^ suboptimal_flops
let _ = x.powf(-2_147_483_648.0);
//~^ suboptimal_flops
let _ = x.powf(2_147_483_647.0);
//~^ suboptimal_flops
// Cases where the lint shouldn't be applied
let _ = x.powf(2.1);
let _ = x.powf(-2.1);
let _ = x.powf(-2_147_483_649.0);
let _ = x.powf(2_147_483_648.0);
}
|