Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for iterations (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def TensorListOpsDecompositionPass : Pass<"tf-tensor-list-ops-decomposition", "ModuleOp"> {
      let summary = "Decomposes TensorList operations into generic operations on tensors.";
    
      let description = [{
    This pass rewrites TensorList operations into generic and non-mutating
    operations on tensors. This results in operations that can be legalized to XLA.
    
    The list is converted to a single large tensor that includes all list elements,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // operand type was inferred. This would need to be careful if working on a
      // region that would not be isolated.
      for (int iteration = 0; iteration < max_iterations && changed; ++iteration) {
        changed = false;
        LLVM_DEBUG(llvm::dbgs()
                   << "Shape inference, iteration " << iteration << "\n");
        auto res = region->walk([&](Operation* op) {
          auto abstract_op = op->getRegisteredInfo();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    //	-fuzztime t
    //	    Run enough iterations of the fuzz target during fuzzing to take t,
    //	    specified as a time.Duration (for example, -fuzztime 1h30s).
    //		The default is to run forever.
    //	    The special syntax Nx means to run the fuzz target N times
    //	    (for example, -fuzztime 1000x).
    //
    //	-fuzzminimizetime t
    //	    Run enough iterations of the fuzz target during each minimization
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    a single byte in the string.
    </li>
    
    <li>
    The iteration order over maps is not specified
    and is not guaranteed to be the same from one iteration to the next.
    If a map entry that has not yet been reached is removed during iteration,
    the corresponding iteration value will not be produced. If a map entry is
    created during iteration, that entry may be produced during the iteration or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    	if err != nil {
    		return err
    	}
    
    	// Give up after 2 loops.
    	// 2 * 500 pods per loop = 1000 max pods <- this should be enough for all test cases.
    	// Anything slower than that (requiring more iterations) indicates a problem and should fail the test.
    	maxLoops := 2
    	loops := maxLoops
    	for set.Status.Replicas < *set.Spec.Replicas {
    		if loops < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not look
         * at table entries if it is 0.
         *
         * - All (synchronized) write operations should write to the "count" field after structurally
         * changing any bin. The operations must not take any action that could even momentarily cause a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // operation:
      //
      // * Operands and cond inputs to call the cond function before the
      //   first iteration.
      // * Operands and body inputs to call the body function for the first
      //   iteration if the cond functions returns True or equivalent result.
      // * Operands and results to assign cond function arguments to op results if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not look
         * at table entries if it is 0.
         *
         * - All (synchronized) write operations should write to the "count" field after structurally
         * changing any bin. The operations must not take any action that could even momentarily cause a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

       *
       * <p>Modifications to the backing set are read through to the returned map. The returned map
       * supports removal operations if the backing set does. Removal operations write through to the
       * backing set. The returned map does not support put operations.
       *
       * <p><b>Warning:</b> If the function rejects {@code null}, caution is required to make sure the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      return absl::OkStatus();
    }
    
    // Add the backedges to the CFG. Given a backedge, we replace the original
    // source and destination operations by two new operations. Most of the
    // fields of the replacements are copied from the original operations.
    // However,
    // - for the src operation, one output is inserted to the front of the output
    //   list. The type of the output is set to the type of the non-control result
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top