Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for callFoo (0.64 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      auto inputs = func_ty.getInputs();
      block->addArguments(inputs, SmallVector<Location>(inputs.size(), loc));
      mlir::func::CallOp call_op = rewriter.create<mlir::func::CallOp>(
          loc, func, func_ty.getResults(), block->getArguments());
      rewriter.create<mhlo::ReturnOp>(loc, call_op.getResults());
    }
    
    //===----------------------------------------------------------------------===//
    // Op converters.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    				d = callDeferStack
    			}
    			s.call(n.Call.(*ir.CallExpr), d, false, n.DeferAt)
    		}
    	case ir.OGO:
    		n := n.(*ir.GoDeferStmt)
    		s.callResult(n.Call.(*ir.CallExpr), callGo)
    
    	case ir.OAS2DOTTYPE:
    		n := n.(*ir.AssignListStmt)
    		var res, resok *ssa.Value
    		if n.Rhs[0].Op() == ir.ODOTTYPE2 {
    			res, resok = s.dottype(n.Rhs[0].(*ir.TypeAssertExpr), true)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // The argument types don't match the parameter types for the
      // pcall_multi_in_out function. That's fine for a PartitionedCallOp but not
      // for a standard CallOp, so this op can't be lowered.
      // CHECK: "tf.PartitionedCall"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top