Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 451 for Function1 (0.29 sec)

  1. src/cmd/compile/internal/ir/func.go

    	// within a package.
    	ABIRefs obj.ABISet
    
    	NumDefers  int32 // number of defer calls in the function
    	NumReturns int32 // number of explicit returns in the function
    
    	// NWBRCalls records the LSyms of functions called by this
    	// function for go:nowritebarrierrec analysis. Only filled in
    	// if nowritebarrierrecCheck != nil.
    	NWBRCalls *[]SymAndPos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

      return std::move(*loader).module();
    }
    
    // Renames functions in the stablehlo module to avoid naming conflicts with
    // existing functions in the tf module.
    // Sets _from_xla_call_module attribute for each stablehlo function.
    // Returns the new stablehlo main function's name or error.
    //
    // If we directly insert stablehlo functions into tf module, MLIR will rename
    // the stablehlo functions themselves in the tf module automatically to avoid
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	functionNodes := make(map[string]graph.Nodes)
    	for _, n := range g.Nodes {
    		if !o.Symbol.MatchString(n.Info.Name) {
    			continue
    		}
    		if functionNodes[n.Info.Name] == nil {
    			functions = append(functions, n)
    		}
    		functionNodes[n.Info.Name] = append(functionNodes[n.Info.Name], n)
    	}
    	functions.Sort(graph.NameOrder)
    
    	if len(functionNodes) == 0 {
    		return fmt.Errorf("no matches found for regexp: %s", o.Symbol)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      return op;
    }
    
    // Stateful helper class to export a function into a Graph.
    class Exporter {
     public:
      // Converts the given Module to a Graph. The given module should only contain
      // one entry function, which is identified by name "main". This entry function
      // is converted to the base of the graph graph. The rest of the functions are
      // converted to the library functions in that graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/kernels/xla_ops.cc

          VLOG(2) << "Using PJRT for compilation. Function name: "
                  << function_.name();
          status = CompileToPjRtLoadedExecutable(
              *ctx, platform_info_, function_, args, compile_mode, has_ref_vars_,
              /*may_alias_resource_update=*/false, &kernel, &pjrt_client,
              &pjrt_executable);
        } else {
          status = CompileToLocalExecutable(
              ctx, function_, has_ref_vars_, platform_info_, args, compile_mode,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that promotes resource reads/writes in `functions` to inputs
    // and outputs of `functions`, assuming that resource operations have already
    // been decomposed and function calls have already been inlined. If `functions`
    // is empty, the pass is applied to the main function by default. The pass also
    // annotates the input arguments for resources with the indices of their
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    			bu.SetFastSymbolization(true)
    		}
    	}
    
    	functions := map[profile.Function]*profile.Function{}
    	addFunction := func(f *profile.Function) *profile.Function {
    		if fp := functions[*f]; fp != nil {
    			return fp
    		}
    		functions[*f] = f
    		f.ID = uint64(len(prof.Function)) + 1
    		prof.Function = append(prof.Function, f)
    		return f
    	}
    
    	missingBinaries := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

                                             while_region.getBody()));
        } else if (auto case_op = dyn_cast<CaseOp>(op)) {
          llvm::SmallVector<func::FuncOp, 4> functions;
          case_op.get_branch_functions(functions);
          AnalyzeFunctionalCaseOrIfOp(case_op, functions, backtrack_analysis);
        } else if (auto if_op = dyn_cast<IfOp>(op)) {
          AnalyzeFunctionalCaseOrIfOp(
              if_op, {if_op.then_function(), if_op.else_function()},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		}
    		mappings[m.ID] = m
    	}
    	functions := make(map[uint64]*Function, len(p.Function))
    	for _, f := range p.Function {
    		if f == nil {
    			return fmt.Errorf("profile has nil function")
    		}
    		if f.ID == 0 {
    			return fmt.Errorf("found function with reserved ID=0")
    		}
    		if functions[f.ID] != nil {
    			return fmt.Errorf("multiple functions with same id: %d", f.ID)
    		}
    		functions[f.ID] = f
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    C.sizeof_struct_stat.
    
    A C function may be declared in the Go file with a parameter type of
    the special name _GoString_. This function may be called with an
    ordinary Go string value. The string length, and a pointer to the
    string contents, may be accessed by calling the C functions
    
    	size_t _GoStringLen(_GoString_ s);
    	const char *_GoStringPtr(_GoString_ s);
    
    These functions are only available in the preamble, not in other C
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top