Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FunctionBody (0.16 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        if (fdef == nullptr) {
          return errors::Internal("Failed to find function ", node->type_string(),
                                  " in function library.");
        }
        std::unique_ptr<FunctionBody> fbody;
        TF_RETURN_IF_ERROR(
            FunctionDefToBodyHelper(*fdef, node->attrs(), library, &fbody));
    
        InlineFunctionBodyOptions inline_opts;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    			d.Values = p.exprList()
    		}
    	}
    
    	return d
    }
    
    // FunctionDecl = "func" FunctionName [ TypeParams ] ( Function | Signature ) .
    // FunctionName = identifier .
    // Function     = Signature FunctionBody .
    // MethodDecl   = "func" Receiver MethodName ( Function | Signature ) .
    // Receiver     = Parameters .
    func (p *parser) funcDeclOrNil() *FuncDecl {
    	if trace {
    		defer p.trace("funcDecl")()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top