(expr)
| 3246 | |
| 3247 | |
| 3248 | def is_valid_blockwise_op(expr): |
| 3249 | return isinstance(expr, Blockwise) and not isinstance( |
| 3250 | expr, (FromPandas, FromArray, FromDelayed) |
| 3251 | ) |
| 3252 | |
| 3253 | |
| 3254 | def optimize_blockwise_fusion(expr): |
no outgoing calls
no test coverage detected
searching dependent graphs…