Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for Constraint (0.15 sec)

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

      }
    
      if (auto host_compute_op = dyn_cast<XlaHostComputeOp>(op)) {
        return InferShapeForFunctionAttachedToXlaHostCompute(host_compute_op);
      }
    
      // TODO(jpienaar): Extract function input arg constraint interface.
      // TODO(jpienaar): Unify the shape propagation to functions using interface.
      if (auto map_dataset_op = dyn_cast<MapDatasetOp>(op)) {
        // TODO(jpienaar): The output type of these ops need to be refined.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCandidateInfo.kt

    /**
     * A candidate that is applicable for a call. A candidate is applicable if the call's arguments are complete and are assignable to the
     * candidate's parameters, AND the call's type arguments are complete and fit all the constraints of the candidate's type parameters.
     */
    public class KaApplicableCallCandidateInfo(
        candidate: KaCall,
        isInBestCandidates: Boolean,
    ) : KaCallCandidateInfo(candidate, isInBestCandidates)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. RELEASE.md

    *   TensorFlow 1.15 is built using devtoolset7 (GCC7) on Ubuntu 16. This may
        lead to ABI incompatibilities with extensions built against earlier versions
        of TensorFlow.
    *   Deprecated the use of `constraint=` and `.constraint` with ResourceVariable.
    *   `tf.keras`:
        *   `OMP_NUM_THREADS` is no longer used by the default Keras config. To
            configure the number of threads, use `tf.config.threading` APIs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. integration-tests/gradle/build.gradle.kts

                }
                ?.apply { select(this) }
            }
          }
        }
    
        if (name.contains("AndroidConstraint")) {
          dependencies {
            constraints {
              "api"("com.google.guava:guava") {
                attributes {
                  // if the Gradle version is 7+, you can use
                  // TargetJvmEnvironment.TARGET_JVM_ENVIRONMENT_ATTRIBUTE
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         *
         * @since 5.3
         */
        List<Capability> getRequestedCapabilities();
    
        /**
         * Endorse version constraints with {@link VersionConstraint#getStrictVersion()} strict versions} from the target module.
         *
         * Endorsing strict versions of another module/platform means that all strict versions will be interpreted during dependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DeprecatedFeaturesListener.kt

        /**
         * Only nag about tasks that are actually executing, but not tasks that are configured by the executing tasks.
         * A task is unlikely to reach out to other tasks without violating other constraints.
         **/
        private
        fun shouldReportInContext(task: TaskInternal, runningTask: TaskInternal?) =
            runningTask == null || task === runningTask
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    )
    
    const Doc = `check Go toolchain directives such as //go:debug
    
    This analyzer checks for problems with known Go toolchain directives
    in all Go source files in a package directory, even those excluded by
    //go:build constraints, and all non-Go source files too.
    
    For //go:debug (see https://go.dev/doc/godebug), the analyzer checks
    that the directives are placed only in Go source files, only above the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

    #define DEBUG_TYPE "run-tf-graph-optimization"
    
    namespace tensorflow {
    namespace {
    // Creates a pass to convert MLIR to Graph, run user-specified Graph
    // Optimization Passes and convert back to MLIR.
    // Constraints: This pass expects that all operations in the MLIR module either
    // belong to 'tf' or '_tf' dialect. The output is in '_tf' dialect.
    class GraphOptPass
        : public mlir::PassWrapper<GraphOptPass,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

                    )
                )
    
                dependencies {
                    implementation("org:foo:1.0") {
                       because 'version 1.0 is tested'
                    }
                    constraints {
                        implementation("org:bar:2.0") {
                            because 'because 2.0 is cool'
                        }
                    }
                }
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

             * This is not for a lifetime: a component can later be evicted through conflict resolution,
             * or another compatible component can be chosen instead if more constraints arise.
             */
            Selected(true),
    
            /**
             * An evicted component has been evicted and will never, ever be chosen starting from the moment it is evicted.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top