// RUN: npcomp-opt <%s -convert-tcf-to-std | FileCheck %s // CHECK-LABEL: func @unary_ops( // CHECK-SAME: %[[ARG:.*]]: tensor) -> tensor { // CHECK: %[[RET:.*]] = exp %[[ARG]] : tensor // CHECK: return %[[RET]] : tensor // CHECK: } func @unary_ops(%arg0: tensor) -> tensor { %0 = tcf.exp %arg0 : tensor return %0 : tensor } // CHECK-LABEL: func @tcf_add( // CHECK-SAME: %[[LHS:.*]]: tensor, // CHECK-SAME: %[[RHS:.*]]: tensor) -> tensor { // CHECK: %[[LHSSHAPE:.*]] = shape.shape_of %[[LHS]] // CHECK: %[[RHSSHAPE:.*]] = shape.shape_of %[[RHS]] // CHECK: %[[WITNESS:.*]] = shape.cstr_broadcastable %[[LHSSHAPE]], %[[RHSSHAPE]] // CHECK: %[[RET:.*]] = shape.assuming %[[WITNESS]] -> (tensor) { // CHECK: %[[RESULTSHAPE:.*]] = shape.broadcast %[[LHSSHAPE]], %[[RHSSHAPE]] // CHECK: %[[LHSBCAST:.*]] = tcp.broadcast_to %[[LHS]], %[[RESULTSHAPE]] // CHECK: %[[RHSBCAST:.*]] = tcp.broadcast_to %[[RHS]], %[[RESULTSHAPE]] // CHECK: %[[ADD:.*]] = addf %[[LHSBCAST]], %[[RHSBCAST]] // CHECK: shape.assuming_yield %[[ADD]] : tensor // CHECK: } // CHECK: return %[[RET:.*]] : tensor // CHECK: } func @tcf_add(%arg0: tensor, %arg1: tensor) -> tensor { %0 = tcf.add %arg0, %arg1 : (tensor, tensor) -> tensor return %0 : tensor }