Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for max_iterations_ (0.18 sec)

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

      // Run clustering passes until the convergence. Limit the number of iterations
      // to guard from the infinite loop in presence of bugs.
      constexpr int max_iterations = 100;
      for (unsigned i = 0; i < max_iterations; ++i)
        if (!RunClusteringPass(state, policies)) break;
    
      // Form clusters found by the union-find algorithm.
      llvm::DenseMap<unsigned, Cluster> root_clusters;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      return %2 : tensor<3xf32>
    }
    
    // -----
    
    // Test a while to map_fn conversion in which max_iterations are passed
    // into the predicate function.
    
    // CHECK-LABEL: @"map/while_cond"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_test.go

    	om.setsIndexer.Add(set)
    	ssc.enqueueStatefulSet(set)
    	fakeWorker(ssc)
    	selector, err := metav1.LabelSelectorAsSelector(set.Spec.Selector)
    	if err != nil {
    		return err
    	}
    	iterations := 0
    	for (maxIterations < 0 || iterations < maxIterations) && set.Status.ReadyReplicas < *set.Spec.Replicas {
    		iterations++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      // Look if there is a function that tries until it converge.
      // Currently unit-test doesn't do multiple tries, so we need this.
      const int max_iterations = 15;
      for (int i = 0; i < max_iterations; ++i) {
        if (failed(applyPartialConversion(func, target, frozenPatterns))) {
          return false;
        }
      }
      return true;
    }
    
    void LegalizeTFPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_test.cc

        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        TFE_Execute(matmul, &retvals[0], &num_retvals, status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        if (state.iterations() >= state.max_iterations && async) {
          TFE_Executor* executor = TFE_ContextGetExecutorForThread(ctx);
          TFE_ExecutorWaitForAllPendingNodes(executor, status);
          ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  7. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top