I am trying to lower a DLRM model (GitHub - facebookresearch/dlrm: An implementation of a deep learning recommendation model (DLRM)) to torch-mlir, but am running into the issue below:
module = torch_mlir.compile(
model_traced,
(dense_x, lS_o, lS_i),
output_type=“torch”,
# output_type=“linalg-on-tensors”,
use_tracing=False,
verbose=False,
)
code/torch.py:23:23: error: unsupported by backend contract: Unimplemented operator ‘aten.unbind.int’
Just wanted to make sure I didn’t miss anything obvious: has anyone successfully converted a DLRM model () to torch-mlir?
Cheers,
Jim