// RUN: not npcomp-run-mlir %s \ // RUN: -invoke requires_one_input \ // RUN: -shared-libs=%npcomp_runtime_shlib 2>&1 \ // RUN: | FileCheck %s // CHECK: invoking 'requires_one_input': expected 1 inputs func @requires_one_input(%arg0: tensor) -> tensor { %0 = "tcf.add"(%arg0, %arg0) : (tensor, tensor) -> tensor return %0 : tensor }