Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,788 for Function1 (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

    }
    
    // This structure contains the metadata of the per-host function. All operations
    // in this function should be on the same host.
    struct FunctionMetadata {
      // The original function name before partition.
      llvm::StringRef original_name;
      // The insertion point of partition functions.
      Block::iterator insertion_point;
      // The partitioned function name.
      llvm::StringRef partition_name;
      // The input values of the function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. 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)
  3. src/text/template/doc.go

    	{{with $x := "output"}}{{$x | printf "%q"}}{{end}}
    		The same, but pipelined.
    
    Functions
    
    During execution functions are found in two function maps: first in the
    template, then in the global function map. By default, no functions are defined
    in the template but the Funcs method can be used to add them.
    
    Predefined global functions are named as follows.
    
    	and
    		Returns the boolean AND of its arguments by returning the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"cum":  helpText("Sort entries based on cumulative weight"),
    
    	// Output granularity
    	"functions": helpText(
    		"Aggregate at the function level.",
    		"Ignores the filename where the function was defined."),
    	"filefunctions": helpText(
    		"Aggregate at the function level.",
    		"Takes into account the filename where the function was defined."),
    	"files": "Aggregate at the file level.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.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: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. hack/update-codegen.sh

    # Deep-copy generation
    #
    # Any package that wants deep-copy functions generated must include a
    # comment-tag in column 0 of one file of the form:
    #     // +k8s:deepcopy-gen=<VALUE>
    #
    # The <VALUE> may be one of:
    #     generate: generate deep-copy functions into the package
    #     register: generate deep-copy functions and register them with a
    #               scheme
    function codegen::deepcopy() {
        # Build the tool.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    /**<
     *  Modifies the initialization function of a suite.
     *  This function allows the initialization function associated with 
     *  a suite to be changed.  This is neither recommended nor should it 
     *  be necessary under most circumstances.  However, this function is 
     *  provided for those clients who need to change the function.  The 
     *  current value of the function is available as pSuite->pInitializeFunc.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       *
       * @param function A Function to transform the results of this future to the results of the
       *     returned future.
       * @param executor Executor to run the function in.
       * @return A future that holds result of the transformation.
       */
      public final <T extends @Nullable Object> FluentFuture<T> transform(
          Function<? super V, T> function, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top