Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 440 for involved (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

    void RegisterTPULowerClusterToRuntimeOpsPassPipeline() {
      static mlir::PassPipelineRegistration<StandardPipelineOptions> pipeline(
          "tfrt-lower-cluster-to-runtime-ops-tpu",
          "Run all the passes involved after the clustering transformations from "
          "the TF2XLA Bridge. Takes as input a Module with tf_device.cluster ops "
          "and outputs TFRT runtime ops such as TPUCompile. This pipeline is for "
          "TPU.",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSmartCastProvider.kt

         * if (this is String) {
         *   this.substring() // 'this' receiver is explicit, so no implicit smart-cast here.
         *
         *   smartcast() // 'this' receiver is implicit, therefore there is implicit smart-cast involved.
         * }
         * ```
         */
        public fun KtExpression.getImplicitReceiverSmartCast(): Collection<KaImplicitReceiverSmartCast> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-full")) {
            because("Includes tests for builds with the enterprise plugin and TestKit involved; ConfigurationCacheJacocoIntegrationTest requires JVM distribution")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    packageCycles {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/SingleFileTreeElementMatcher.java

            // A better solution for output files would be to record the type of the output file and then using this type here instead of looking at the disk.
            // Though that is more involved and as soon as the file has been produced, the right file type will be detected here as well.
            boolean elementIsFile = !element.isDirectory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/DependencyClassPathProvider.java

            // This gradleApi() method creates a Gradle API classpath based on real jars for embedded test running.
            // Currently, this leaks additional dependencies that may cause unexpected issues.
            // This method is involved in generating the gradleApi() Jar which is used in a real Gradle run.
            // See: `org.gradle.api.internal.notations.DependencyClassPathNotationConverter`
            ClassPath classpath = ClassPath.EMPTY;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_predicates.go

    // [Named.Obj] methods return the same [TypeName] symbol.
    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    // To ensure consistency, use a single [Importer] for
    // all loaded packages and their dependencies.
    // For more information, see https://github.com/golang/go/issues/57497.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/go/types/api_predicates.go

    // [Named.Obj] methods return the same [TypeName] symbol.
    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    // To ensure consistency, use a single [Importer] for
    // all loaded packages and their dependencies.
    // For more information, see https://github.com/golang/go/issues/57497.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

         * potentially reducing the memory consumption.
         * Another key benefit is that this eliminates discrepancies in behavior between cache hits and misses.
         *
         * We disable load-after-store when tooling model builders are involved.
         * This is because the builders are executed after the tasks (if any) in a build action,
         * and these builders may access project state as well as the task state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

    }
    
    // Registers a pipeline builder function for TF TPU V1 bridge.
    mlir::PassPipelineRegistration<> replicated_clustering_bridge_v1(
        "tf-replicated-clustering-bridge-v1",
        "Run all the passes involved in transforming a TensorFlow V1 graph before "
        "execution so that it is suitable for targeting devices.",
        CreateReplicatedBridgePipelineV1);
    
    }  // namespace v1
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      // Registers a pipeline builder function for the default
      // canonicalize/optimizer.
      static mlir::PassPipelineRegistration<StandardPipelineOptions> pipeline(
          "tf-standard-pipeline",
          "Run all the passes involved in transforming/optimizing the graph after "
          "importing into MLIR, without any target specialization.",
          CreateTFStandardPipeline);
    }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top