()
| 2 | use std::f64::consts::*; |
| 3 | |
| 4 | fn main() { |
| 5 | set_device(0); |
| 6 | info(); |
| 7 | acoustic_wave_simulation(); |
| 8 | } |
| 9 | |
| 10 | fn normalise(a: &Array<f32>) -> Array<f32> { |
| 11 | (a / (max_all(&abs(a)).0 as f32 * 2.0f32)) + 0.5f32 |
nothing calls this directly
no test coverage detected