()
| 16 | def i32_array(): |
| 17 | return np.reshape(np.arange(-12.5, 12.5, 2.1,dtype=np.int32),(3,4)) |
| 18 | def i64_array(): |
| 19 | return np.reshape(np.arange(-12.5, 12.5, 2.1,dtype=np.int64),(3,4)) |
| 20 | def f32_array(): |
| 21 | return np.reshape(np.arange(-12.5, 12.5, 2.1,dtype=np.float32),(3,4)) |
| 22 | def f64_array(): |
nothing calls this directly
no outgoing calls
no test coverage detected