Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,166 for Function1 (0.31 sec)

  1. guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

      final HashFunction[] functions;
    
      AbstractCompositeHashFunction(HashFunction... functions) {
        for (HashFunction function : functions) {
          checkNotNull(function);
        }
        this.functions = functions;
      }
    
      /**
       * Constructs a {@code HashCode} from the {@code Hasher} objects of the functions. Each of them
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  2. pkg/test/failer.go

    // Wrap executes a function with a fake Failer, and returns an error if the test failed. This allows
    // calling functions that take a Failer and using them with functions that expect an error, or
    // allowing calling functions that would cause a test to immediately fail to instead return an error.
    // Wrap handles Cleanup() and short-circuiting of Fatal() just like the real testing.T.
    func Wrap(f func(t Failer)) error {
    	done := make(chan struct{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.cc

      // TODO(bmzhao): After discussing with Allen, we should execute this via a
      // PartitionedCallOp for compatibility with "tooling that assumes functions in
      // graphs are PartitionedCallOps".
      TF_RETURN_IF_ERROR((*out)->Reset(name_.c_str(), nullptr));
    
      // Adding the user-provided inputs to the function.
      TF_RETURN_IF_ERROR((*out)->AddInputList(inputs));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // enclosing loop variables from within nested functions.
    //
    // # Analyzer loopclosure
    //
    // loopclosure: check references to loop variables from within nested functions
    //
    // This analyzer reports places where a function literal references the
    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

    // function, which might not exist in case of multi-signature graphs. In that
    // case, this pass will create a new main function, which calls signature
    // functions.
    //
    // An already existing @main function will be renamed by attaching a numeric
    // suffix like `@main_0` to avoid conflict with the newly created main function.
    class InsertMainFunctionPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/runtime/runtime.cc

      }
    
      // Setup polymorphic functions and wrap in Callables.
      //
      // For each child of the root, check what type it is.  If it's a
      // SavedFunction, attach that function to the module as a Callable.
      const SavedObjectGraph object_graph = tf_package->GetObjectGraph();
      auto& nodes = object_graph.nodes();
      // Get a map of the concrete functions to their input / output signatures.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.h

        mlir::ModuleOp module, const GraphExportConfig& configs);
    
    // Converts an MLIR module to TensorFlow graph and FunctionLibraryDefinition.
    // The "main" function of the module is stored in the graph and the rest of
    // functions are stored in the library. Control ret nodes are stored separately
    // in `control_ret_nodes`.
    Status ConvertMlirToGraph(mlir::ModuleOp module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      //    marked with the same _xla_compile_id attribute into functions. These
      //    functions contain the computations to be passed to XlaLaunch. During
      //    encapsulation, we sort the arguments into the order expected by
      //    XlaLaunch.
      static Status Encapsulate(std::unique_ptr<Graph>* graph,
                                FunctionLibraryDefinition* flib_def);
    
      // b) we rewrite the function calls generated in phase (a) into XlaLaunch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/runtime/asm_ppc64x.h

    // | argument area       |
    // +---------------------+ <- R1+FIXED_FRAME
    // | fixed area          |
    // +---------------------+ <- R1
    //
    // So a function that sets up a stack frame at all uses as least FIXED_FRAME
    // bytes of stack. This mostly affects assembly that calls other functions
    // with arguments (the arguments should be stored at FIXED_FRAME+0(R1),
    // FIXED_FRAME+8(R1) etc) and some other low-level places.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. 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)
Back to top