Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for Converge (0.37 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

                                                  target_opset_);
        patterns.add<QuantizeAvgPoolOpPattern>(ctx);
      }
      if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
        func.emitWarning("Failed to converge pattern at QuantizePass.");
      }
    
      if (!shouldKeepUnusedQdqPattern()) {
        RewritePatternSet patterns_2(&getContext());
        patterns_2.add<RemoveUnusedQdqPattern>(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      // is not the same as the result index, which means there is "crosstalk"
      // between 2 or more operands. In that case, we do an iterative propagation
      // of resource IDs till the results converge.
      bool change = true;
      while (change) {
        change = false;
        for (auto result : filter_resources(while_op->getResults())) {
          if (IsUnknownResource(result)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    // own input action ID as its output action ID (short of a miraculous hash collision).
    // Instead we use the content IDs to compute the next action ID, and because
    // the content IDs converge, so too do the action IDs and therefore the
    // build IDs and the overall compiler binary. See cmd/dist's cmdbootstrap
    // for the actual convergence sequence.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

                       FrozenRewritePatternSet& frozenPatterns) {
      // Keep trying to convert.
      // TODO(karimnosseir): This is similar to what apply greedy patterns does.
      // 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))) {
    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. src/cmd/go/internal/modload/edit.go

    // unpruning the selected version of each module path that is a root in rs or in
    // the roots slice until the graph reaches a fixed point.
    //
    // The graph is guaranteed to converge to a fixed point because unpruning a
    // module version can only increase (never decrease) the selected versions,
    // and the set of versions for each module is finite.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager.go

    	// containers and thus actively be leveraging exclusive resources. Note that resources
    	// like volumes are reconciled by a subsystem in the Kubelet and will converge if a new
    	// pod reuses an exclusive resource (unmount -> free -> mount), which means we do not
    	// need wait for those resources to be detached by the Kubelet. In general, resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  7. docs/it/docs/index.md

        * Query parameters.
        * Cookies.
        * Headers.
        * Form.
        * File.
    * <abbr title="detta anche: serialization, parsing, marshalling">Conversione</abbr> dei dati di output: converte dati e tipi di Python a dati per la rete (come JSON):
        * Converte i tipi di Python (`str`, `int`, `float`, `bool`, `list`, ecc).
        * Oggetti `datetime`.
        * Oggetti `UUID`.
        * Modelli del database.
        * ...e molto di più.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. docs/pt/docs/index.md

        * Cabeçalhos.
        * Formulários.
        * Arquivos.
    * <abbr title="também conhecido como: serialization, parsing, marshalling">Conversão</abbr> de dados de saída de tipos e dados Python para dados de rede (como JSON):
        * Converte tipos Python (`str`, `int`, `float`, `bool`, `list` etc).
        * Objetos `datetime`.
        * Objetos `UUID`.
        * Modelos de Banco de Dados.
        * ...e muito mais.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Service.java

      /**
       * The lifecycle states of a service.
       *
       * <p>The ordering of the {@link State} enum is defined such that if there is a state transition
       * from {@code A -> B} then {@code A.compareTo(B) < 0}. N.B. The converse is not true, i.e. if
       * {@code A.compareTo(B) < 0} then there is <b>not</b> guaranteed to be a valid state transition
       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Service.java

      /**
       * The lifecycle states of a service.
       *
       * <p>The ordering of the {@link State} enum is defined such that if there is a state transition
       * from {@code A -> B} then {@code A.compareTo(B) < 0}. N.B. The converse is not true, i.e. if
       * {@code A.compareTo(B) < 0} then there is <b>not</b> guaranteed to be a valid state transition
       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top