// RUN: torch-mlir-opt -torch-verify-linalg-on-tensors-backend-contract -split-input-file -verify-diagnostics -allow-unregistered-dialect %s | FileCheck %s // CHECK: func.func @mm func.func @mm(%arg0: tensor, %arg1: tensor) -> tensor { %c0 = arith.constant 0 : index %c1 = arith.constant 1 : index %cst = arith.constant 0.000000e+00 : f32 %0 = tensor.dim %arg0, %c0 : tensor %1 = tensor.dim %arg0, %c1 : tensor %2 = tensor.dim %arg1, %c0 : tensor %3 = tensor.dim %arg1, %c1 : tensor %4 = arith.cmpi eq, %1, %2 : index cf.assert %4, "mismatching contracting dimension for aten.mm" %5 = linalg.init_tensor [%0, %3] : tensor %6 = linalg.fill ins(%cst : f32) outs(%5 : tensor) -> tensor %7 = linalg.matmul ins(%arg0, %arg1 : tensor, tensor) outs(%6 : tensor) -> tensor return %7 : tensor } // ----- // Basic check of error reporting. // expected-error@+1 {{Module does not conform to the linalg-on-tensors backend contract.}} module { func.func @disallowed() { // expected-error@+1 {{failed to legalize operation 'unknown_dialect.unknown_op'}} "unknown_dialect.unknown_op"() : () -> () return } } // ----- // TODO: Improve these errors to give more exact reporting. // // The reporting we inherit from dialect conversion is not precise. // For example, here we want it to explicitly call out that // `!torch.tensor` is the problem here, which suggests // that type inference didn't succeed, or insufficient type information // was available. // // Ultimately, the output of this pass needs to be conveyed to the user // in an understandable way, such as suggesting a particular place where // a shape annotation is needed. // expected-error@+1 {{Module does not conform to the linalg-on-tensors backend contract.}} module { func.func @disallowed(%arg0: !torch.tensor) -> !torch.tensor { // expected-error@+1 {{failed to legalize operation 'func.return'}} return %arg0 : !torch.tensor } }