(a, b)
| 75 | |
| 76 | |
| 77 | def _fill_with_last_one(a, b): |
| 78 | import numpy as np |
| 79 | |
| 80 | # cumreduction apply the push func over all the blocks first so, |
| 81 | # the only missing part is filling the missing values using the |
| 82 | # last data of the previous chunk |
| 83 | return np.where(np.isnan(b), a, b) |
| 84 | |
| 85 | |
| 86 | def _dtype_push(a, axis, dtype=None): |
nothing calls this directly
no test coverage detected
searching dependent graphs…