Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for predict1 (0.18 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    their `mlir_module` string attribute.
    ### `-tf-merge-control-flow`
    
    _Merges IfRegion ops together with a common predicate._
    
    This pass merges IfRegion ops together if they have the same predicate and it
    is safe to do so (there are no intermediate dependencies, they are in the
    same block, etc).
    
    For example:
    
    ```mlir
    "tf.IfRegion"(%0) ( {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      std::string retvals_communication_key =
          llvm::formatv("host_compute_channel_{0}_retvals",
                        (communication_key_index))
              .str();
    
      // Use a unique name when sending just the IfRegion predicate.  This is
      // for readable and to match the key in the TF2XLA bridge.
      if (clustered_ops.size() == 1 && llvm::isa<mlir::TF::IfRegionOp>(op) &&
          external_operands.size() == 1) {
        args_communication_key =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  3. src/go/build/build.go

    	// (because we don't know to search in 'go env GOROOT' otherwise).
    	if ctxt.GOROOT == "" {
    		return errNoModules
    	}
    
    	// Predict whether module aware mode is enabled by checking the value of
    	// GO111MODULE and looking for a go.mod file in the source directory or
    	// one of its parents. Running 'go env GOMOD' in the source directory would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // single device.
        const std::optional<DeviceId>& resource_op_device() const {
          return resource_op_device_;
        }
    
        // If not nullopt the a predicate that is true iff the cluster is alive.
        // Otherwise the user has (unsafely) disabled deadness analysis.  If this is
        // unset on a single Cluster instance then it is unset on all Cluster
        // instances.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	gcForceMode                    // stop-the-world GC now, concurrent sweep
    	gcForceBlockMode               // stop-the-world GC now and STW sweep (forced by user)
    )
    
    // A gcTrigger is a predicate for starting a GC cycle. Specifically,
    // it is an exit condition for the _GCoff phase.
    type gcTrigger struct {
    	kind gcTriggerKind
    	now  int64  // gcTriggerTime: current time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	return d
    }
    
    // extractName splits the expression x into (name, expr) if syntactically
    // x can be written as name expr. The split only happens if expr is a type
    // element (per the isTypeElem predicate) or if force is set.
    // If x is just a name, the result is (name, nil). If the split succeeds,
    // the result is (name, expr). Otherwise the result is (nil, x).
    // Examples:
    //
    //	x           force    name    expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Perhaps it’s an update to a web service or a database table.
    Gradle has no way of knowing how to check whether the task is up to date in such cases.
    
    That’s where the `upToDateWhen()` method on `TaskOutputs` comes in.
    This takes a predicate function that is used to determine whether a task is up to date or not.
    For example, you could read the version number of your database schema from the database.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    	return spec
    }
    
    // extractName splits the expression x into (name, expr) if syntactically
    // x can be written as name expr. The split only happens if expr is a type
    // element (per the isTypeElem predicate) or if force is set.
    // If x is just a name, the result is (name, nil). If the split succeeds,
    // the result is (name, expr). Otherwise the result is (nil, x).
    // Examples:
    //
    //	x           force    name    expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    In general, the `groovy-base` plugin should be applied whenever working with Groovy language tasks.
    
    ==== Provider.filter
    
    The type of the argument passed to `Provider.filter` is changed from `Predicate` to `Spec` for a more consistent API.
    This change should not affect anyone using `Provider.filter` with a lambda expression.
    However, this might affect plugin authors if they don't use SAM conversions to create a lambda.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top