Closed Hardcode84 closed 2 months ago
Hi @Hardcode84, are you still working on this op?
Hi, @vivekkhandelwal1, I did max_unpool3d
but I'm not working on max_unpool2d
currently.
Duplicate issue of https://github.com/nod-ai/SHARK-ModelDev/issues/718, so close this.
PR for
max_unpool3d
was merged (https://github.com/nod-ai/SHARK-Turbine/issues/765), but unfortunately, this approach won't work formax_unpool2d
as corresponding aten node preserve even less info thanmax_unpool3d
, we need a different approach, either lowering directly to (parallel)scf
loops or ONNX->linalg lowering, skipping aten op. Seemax_unpool3d
issue and PR for details.