Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for Backward (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    embedding lookup on the SparseCore, followed by one or more dense layers on
    TensorCores, optionally followed by a backward pass (training update) with
    more ops on the SparseCore. Ops are broken up into:
      1. SC forward pass
      2. TC forward/backward pass
      3. SC backward pass
      4. non-TPU loop counter updates
    These 4 functions are then staggered so as to enable parallel execution.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// refer back to the pattern established by this original as the
    	// "LMS-substring iterator".
    	//
    	// In every scan through the text, c0, c1 are successive characters of text.
    	// In this backward scan, c0 == text[i] and c1 == text[i+1].
    	// By scanning backward, we can keep track of whether the current
    	// position is type-S or type-L according to the usual definition:
    	//
    	//	- position len(text) is type S with text[len(text)] == -1 (the sentinel)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        if arg_def.type_attr:
          attr_names.append(arg_def.type_attr)
        if arg_def.type_list_attr:
          attr_names.append(arg_def.type_list_attr)
    
        # TODO(fengliuai): currently we don't support backward type inference, so we
        # have to store these non-derivable type in the signatures, and then they
        # can be used to cast the values when raising to tf ops.
        if arg_def.type == types_pb2.DT_FLOAT:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    				}
    			}
    			lastObservedResourceVersion = rv
    		}
    	}
    }
    
    // RunSendInitialEventsBackwardCompatibility test backward compatibility
    // when SendInitialEvents option is set against various implementations.
    // Backward compatibility is defined as RV = "" || RV = "O" and AllowWatchBookmark is set to false.
    // In that case we expect a watch request to be established.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The link:https://kotlinlang.org/docs/reference/compatibility.html[compatibility guarantees] provided by Kotlin apply for both backward and forward compatibility.
    
    ==== Backward compatibility
    
    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        /*
                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
                                prefix,
                                "scope",
                                problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * coordinates.
         *
         * @param artifact the artifact to add or replace.
         * @deprecated Please use {@link MavenProjectHelper}
         * @throws DuplicateArtifactAttachmentException will never happen but leave it for backward compatibility
         */
        public void addAttachedArtifact(Artifact artifact) throws DuplicateArtifactAttachmentException {
            // if already there we remove it and add again
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. hack/local-up-cluster.sh

    }
    
    function start_nodelocaldns {
      cp "${KUBE_ROOT}/cluster/addons/dns/nodelocaldns/nodelocaldns.yaml" nodelocaldns.yaml
      # eventually all the __PILLAR__ stuff will be gone, but theyre still in nodelocaldns for backward compat.
      ${SED} -i -e "s/__PILLAR__DNS__DOMAIN__/${DNS_DOMAIN}/g" nodelocaldns.yaml
      ${SED} -i -e "s/__PILLAR__DNS__SERVER__/${DNS_SERVER_IP}/g" nodelocaldns.yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. pkg/apis/batch/validation/validation.go

    	// present on pod template, and must match job's uid and name.  The
    	// generated (not-manual) selectors/labels ensure no overlap with other
    	// controllers.  The manual mode allows orphaning, adoption,
    	// backward-compatibility, and experimentation with new
    	// labeling/selection schemes.  Automatic selector generation should
    	// have placed certain labels on the pod, but this could have failed if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    	// This also creates an opportunity for experiments to find a better order.
    	s.visitOrder = layoutRegallocOrder(f)
    
    	// Compute block order. This array allows us to distinguish forward edges
    	// from backward edges and compute how far they go.
    	s.blockOrder = make([]int32, f.NumBlocks())
    	for i, b := range s.visitOrder {
    		s.blockOrder[b.ID] = int32(i)
    	}
    
    	s.regs = make([]regState, s.numRegs)
    	nv := f.NumValues()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top