Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 231 for Bridge (0.18 sec)

  1. tensorflow/compiler/mlir/tfr/examples/mnist/BUILD

            "notsan",  # Not needed, and there were issues with timeouts.
            "requires-net:external",
        ],
    
        # TODO(b/175056184): Re-enable xla_enable_strict_auto_jit once the issues
        # with GPU and the MLIR bridge are worked out.
        xla_enable_strict_auto_jit = False,
        deps = [
            ":mnist_train",
            "//tensorflow/python:extra_py_tests_deps",
            "//tensorflow/python/distribute:combinations",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 11:50:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo.h

    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    // Legalize the given MLIR module to XLA HLO using a combination of the MLIR
    // Bridge and XlaBuilder
    absl::StatusOr<XlaCompilationResult> LegalizeTfToHlo(
        const tpu::MlirToHloArgs& computation,
        const tpu::TPUCompileMetadataProto& metadata, bool use_tuple_args,
        llvm::StringRef device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

    enableSystemLogHandler: true
    enableSystemLogQuery: false
    enforceNodeAllocatable:
    - pods
    eventBurst: 10
    eventRecordQPS: 5
    evictionPressureTransitionPeriod: 5m0s
    failSwapOn: true
    fileCheckFrequency: 20s
    hairpinMode: promiscuous-bridge
    healthzBindAddress: 127.0.0.1
    healthzPort: 10248
    httpCheckFrequency: 20s
    imageGCHighThresholdPercent: 85
    imageGCLowThresholdPercent: 80
    imageMaximumGCAge: 0s
    imageMinimumGCAge: 2m0s
    iptablesDropBit: 15
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MixInCoreTypesTransformingClassLoaderIntegrationTest.groovy

    package org.gradle.integtests
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class MixInCoreTypesTransformingClassLoaderIntegrationTest extends AbstractIntegrationSpec {
        def "custom task types have bridge methods for inputs/outputs"() {
            buildFile << """
                import org.gradle.api.internal.*
                import org.gradle.api.internal.tasks.*
    
                class CustomTask extends DefaultTask {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/TestProjectBuilder.java

    import java.util.Collections;
    
    import org.apache.maven.api.services.ModelBuilder;
    import org.apache.maven.api.services.model.ModelProcessor;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.model.root.RootLocator;
    import org.eclipse.aether.RepositorySystem;
    import org.eclipse.aether.impl.RemoteRepositoryManager;
    
    @Named("classpath")
    @Singleton
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedVariantResult.java

        /**
         * The capabilities provided by this variant
         *
         * @since 5.3
         */
        List<Capability> getCapabilities();
    
        /**
         * If present, this means that this variant is a bridge to another variant
         * found in another module. This corresponds to variants which are marked
         * as "available-at" in Gradle Module Metadata.
         *
         * @return the external variant, if any
         * @since 6.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 00:34:16 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

    }
    
    void NoCanonicalization(OpPassManager& pm) {}
    
    // Same as above but for non-replicated Bridge.
    void AddNonReplicatedBridgeClusteringPipelinePasses(OpPassManager& pm) {
      // The following ops must be preserved regardless of reachability. Ideally,
      // all graphs should have control dependencies to enforce this.
      VLOG(2) << "Create TF XLA Bridge pipeline";
      pm.addPass(mlir::TFDevice::CreateXlaValidateInputsPass());
      pm.addNestedPass<FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSessionFactory.java

     */
    package org.apache.maven.internal.impl;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.api.services.Lookup;
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.rtinfo.RuntimeInformation;
    import org.eclipse.aether.RepositorySystem;
    
    @Singleton
    @Named
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:55:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMetadataSource.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.artifact.factory.ArtifactFactory;
    import org.apache.maven.artifact.repository.metadata.RepositoryMetadataManager;
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.plugin.LegacySupport;
    import org.apache.maven.project.ProjectBuilder;
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/MavenTestHelper.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven;
    
    import java.util.List;
    
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.execution.DefaultMavenExecutionRequest;
    import org.apache.maven.execution.DefaultMavenExecutionResult;
    import org.apache.maven.execution.MavenSession;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top