By using CUDA Thrust's inclusive scan with a max operator, I'm able to fill missing values with the previous non-missing value (i.e. last non-missing value to the left).
But how to fill using next non-missing value (to the right)? Thus, for example, using 0 as my missing value marker:
Input: [0 1 0 0 4 0 6 0]
Fill missing from left: [0 1 1 1 4 4 6 6]
Fill missing from right: [0 1 4 4 4 6 6 6] <- want
(Note if the last element is missing then revert to filling final 0s from left.)
I've tried a inclusive scan in reverse, which yields [0 6 6 6 6 6 6 6] for max, not as desired.
Many thanks.
[0 6 6 6 6 6 6 6]formaxand[0 0 0 0 0 0 0 0]forminas operator, not[0 1 4 4 4 6 6 6]as desired. Please could you clarify your solution? Many thanks. – Milo Chen Jan 14 at 1:33[0 1 0 0 4 0 6 0]with the number that comes after (to the right of) it, or if it is the rightmost element of the array, then fill using the element before (to the left of) it. Many thanks. – Milo Chen Jan 14 at 1:51