Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for computations (0.18 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    // have any legalization or canonicalization patterns but shouldn't be marked
    // for outside compilation.
    //
    // TODO(b/177523289): Remove manual handling once we support constant folding
    // and shape inference through the computation on the host side.
    void AddSupportedOpsUsingFolding(MLIRContext* context,
                                     llvm::DenseSet<OperationName>* supported_ops) {
      llvm::SmallDenseSet<OperationName, 8> allowlist_ops = {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

    bool IsCastOfResource(Operation &op) {
      auto cast = dyn_cast<TF::CastOp>(op);
      if (!cast) return false;
      return IsResource(cast.getX());
    }
    
    // Removes passthrough ops in the block. The device computation does not need
    // such nodes to carry information.
    void RemovePassthroughOp(Block &block) {
      for (auto &op : llvm::make_early_inc_range(block)) {
        if (isa<TF::IdentityOp, TF::IdentityNOp>(op) || IsCastOfResource(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      // Set execute_launch when there is exactly one
      // TPUExecuteAndUpdateVariablesOp. More than one means there is model
      // parallelism, which is not supported with TPUReshardVariables. None
      // means there is no TPU computation.
      tf_device::LaunchOp execute_launch;
      TF::TPUExecuteAndUpdateVariablesOp execute;
      replicate.walk([&](TF::TPUExecuteAndUpdateVariablesOp execute_op) {
        execute_launch =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

                "Generated accessors can only be cached in strict mode."
            ) {
                @Suppress("DEPRECATION")
                !strict.get()
            }
        }
    
        /**
         *  ## Computation and sharing of type-safe accessors
         * 1. Group precompiled script plugins by the list of plugins applied in their `plugins` block.
         * 2. For each group, compute the project schema implied by the list of plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/config.go

    			Note that sensitive values like the Bootstrap Token fields are replaced with placeholder values like %q in order to pass validation but
    			not perform the real computation for creating a token.
    		`), action, action, configutil.PlaceholderToken.Token.String()),
    		RunE: func(cmd *cobra.Command, args []string) error {
    			groups, err := mapLegacyKindsToGroups(kinds)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // compiler. According to the language spec, a method pkg.T.f is
    // unexported simply because its name starts with lowercase. But the
    // compiler must nonetheless export f so that downstream compilations can
    // accurately ascertain whether pkg.T implements an interface pkg.I
    // defined as interface{f()}. Exported thus means "described in export
    // data".
    package facts
    
    import (
    	"bytes"
    	"encoding/gob"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

      for (auto& op : llvm::make_early_inc_range(block->getOperations())) {
        if (llvm::isa<TF::IdentityOp, TF::IdentityNOp>(&op)) {
          // Removes identity nodes in the block. The device computation does not
          // need such nodes to carry information.
          op.replaceAllUsesWith(op.getOperands());
          op.erase();
        } else if (auto stack = llvm::dyn_cast<TF::StackV2Op>(&op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. src/image/jpeg/scan.go

    						// buffers (the whole point of progressive encoding), but in Go, the jpeg.Decode
    						// function does not return until the entire image is decoded, so we "continue"
    						// here to avoid wasted computation. Instead, reconstructBlock is called on each
    						// accumulated block by the reconstructProgressiveImage method after all of the
    						// SOS markers are processed.
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/predicates.go

    func isTypeParam(t Type) bool {
    	_, ok := Unalias(t).(*TypeParam)
    	return ok
    }
    
    // hasEmptyTypeset reports whether t is a type parameter with an empty type set.
    // The function does not force the computation of the type set and so is safe to
    // use anywhere, but it may report a false negative if the type set has not been
    // computed yet.
    func hasEmptyTypeset(t Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. src/go/types/predicates.go

    func isTypeParam(t Type) bool {
    	_, ok := Unalias(t).(*TypeParam)
    	return ok
    }
    
    // hasEmptyTypeset reports whether t is a type parameter with an empty type set.
    // The function does not force the computation of the type set and so is safe to
    // use anywhere, but it may report a false negative if the type set has not been
    // computed yet.
    func hasEmptyTypeset(t Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top