Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FunctionBody (0.19 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          !HasLiftedArgs(*else_branch_function_def)) {
        return absl::OkStatus();
      }
    
      std::unique_ptr<FunctionBody> then_branch_function_body;
      TF_RETURN_IF_ERROR(FunctionDefToBodyHelper(
          *then_branch_function_def, AttrSlice(&then_branch_func.attr()), fld,
          &then_branch_function_body));
    
      std::unique_ptr<FunctionBody> else_branch_function_body;
      TF_RETURN_IF_ERROR(FunctionDefToBodyHelper(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // depends on an op with static output shape like tf.Const.
      absl::StatusOr<mlir::FunctionType> InferLibFunctionType(
          const FunctionBody& fbody);
    
      // Extracts arg and ret nodes from FunctionBody.
      void GetArgsAndRetsFromFunctionBody(
          const FunctionBody& fbody,
          absl::InlinedVector<OutputTensor, 4>* arg_nodes,
          absl::InlinedVector<OutputTensor, 4>* ret_nodes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    <p>
    A function declaration binds an identifier, the <i>function name</i>,
    to a function.
    </p>
    
    <pre class="ebnf">
    FunctionDecl = "func" FunctionName Signature [ FunctionBody ] .
    FunctionName = identifier .
    FunctionBody = Block .
    </pre>
    
    <p>
    If the function's <a href="#Function_types">signature</a> declares
    result parameters, the function body's statement list must end in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top