Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 89 for Bridge (0.13 sec)

  1. tensorflow/compiler/jit/flags.cc

      //
      // The `enable_mlir_bridge_is_explicit` variable tracks whether or not the
      // user has made an explicit request. That is, if this variable is set to
      // true, the program honors the user's request as per `enable_mlir_bridge`; if
      // it's set to false, the default behavior is used (which may run either
      // bridge, on a per-graph basis).
      bool enable_mlir_bridge = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

    namespace TF {
    namespace {
    
    // Returns true if the given op is TF/XLA communication op in the old bridge.
    bool IsCommunicationOp(Operation* op) {
      return isa<TF::XlaHostComputeOp, TF::XlaSendToHostOp, TF::XlaRecvFromHostOp>(
          op);
    }
    
    // Returns true if the given op is one of ops supported to have communication
    // subcomputation in the TF/XLA bridge.
    bool SupportsCommunicationComputation(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaRuntime.java

        }
    
        /**
         * Determines Scala bridge jar to download. In Scala 3 it is released for each Scala
         * version together with the compiler jars. For Scala 2 we download sources jar and compile
         * it later on.
         *
         * @param scalaVersion version of scala to download the bridge for
         * @param zincVersion version of zinc relevant for Scala 2
         * @return bridge dependency to download
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            project.targets[0].buildArgumentsString == '-Porg.gradle.internal.xcode.bridge.ACTION="${ACTION}" -Porg.gradle.internal.xcode.bridge.PRODUCT_NAME="${PRODUCT_NAME}" -Porg.gradle.internal.xcode.bridge.CONFIGURATION="${CONFIGURATION}" -Porg.gradle.internal.xcode.bridge.BUILT_PRODUCTS_DIR="${BUILT_PRODUCTS_DIR}" :_xcode__${ACTION}_${PRODUCT_NAME}_${CONFIGURATION}'
    
            project.targets[0].assertIsTool()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/BUILD

    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    load("//tensorflow/core/platform:build_config.bzl", "tf_proto_library")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # Please reach out to tf-bridge-team@ before using the TF2XLA bridge.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [
            ":__subpackages__",
        ],
    )
    
    cc_library(
        name = "legalize_tf",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

        // Power of 1.5 with bucket count 45 (> 23 hours)
        {tsl::monitoring::Buckets::Exponential(1, 1.5, 45)});
    
    // There were no MLIR ops so the old bridge was called successfully.
    constexpr char kOldBridgeNoMlirSuccess[] = "kOldBridgeNoMlirSuccess";
    // There were no MLIR ops so the old bridge was called but it failed.
    constexpr char kOldBridgeNoMlirFailure[] = "kOldBridgeNoMlirFailure";
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

    // Patterns whose root op is in the set `include_ops` are moved from the set
    // `from` to the returned set. This is used to partition patterns by op so they
    // can be cleanly migrated from the old bridge to the MLIR bridge.
    RewritePatternSet PatternsIncludeOps(RewritePatternSet &from) {
      RewritePatternSet to(from.getContext());
      // Filter NativePatterns.
      for (auto &pattern : from.getNativePatterns()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/types.go

    	HairpinVeth = "hairpin-veth"
    	// Make the container bridge promiscuous. This will force it to accept
    	// hairpin packets, even if the flag isn't set on ports of the bridge.
    	PromiscuousBridge = "promiscuous-bridge"
    	// Neither of the above. If the kubelet is started in this hairpin mode
    	// and kube-proxy is running in iptables mode, hairpin packets will be
    	// dropped by the container bridge.
    	HairpinNone = "none"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      func.func @main() -> () {
        %0 = tf.Unknown() -> ()
        func.return %0
      }
    })";
    
    // MLIR which should be filtered by the MLIR bridge but fully legalize with the
    // combined bridge.
    static constexpr char kUnsupportedMlirBridgeModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
      func.func @main() -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. 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)
Back to top