Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 231 for Bridge (0.11 sec)

  1. build/build-image/rsyncd.sh

    # ownership to that.
    
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # The directory that gets sync'd
    VOLUME=${HOME}
    
    # Assume that this is running in Docker on a bridge.  Allow connections from
    # anything on the local subnet.
    ALLOW=$(ip route | awk  '/^default via/ { reg = "^[0-9./]+ dev "$5 } ; $0 ~ reg { print $1 }')
    
    CONFDIR="/tmp/rsync.k8s"
    PIDFILE="${CONFDIR}/rsyncd.pid"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.td

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // Declare bridge passes that perform legalization and/or lowering.
    
    include "mlir/Pass/PassBase.td"
    
    def ConvertTFQuantOpsToMHLO : Pass<"quant-convert-tf-quant-ops-to-mhlo", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf_mlir_opt_main.cc

    #include "tensorflow/compiler/mlir/init_mlir.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h"
    #include "tensorflow/compiler/mlir/register_common_dialects.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/model/ModelBuilderTest.java

     */
    package org.apache.maven.model;
    
    import javax.inject.Inject;
    
    import java.io.File;
    import java.util.Collections;
    import java.util.List;
    
    import org.apache.maven.SimpleLookup;
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.execution.DefaultMavenExecutionRequest;
    import org.apache.maven.execution.DefaultMavenExecutionResult;
    import org.apache.maven.execution.MavenExecutionRequest;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/cannonicalize_ops_outside_compilation.mlir

    // RUN: tf-opt %s -tf-replicated-clustering-bridge-v2 -tfrt-lower-cluster-to-runtime-ops-tpu 2>&1 | FileCheck %s
    
    // This test verifies that the tail extraction is not terminated prematurely
    // due to the outside compilation attribute could be removed in
    // canonicalization of Reshape ops.
    
    // Reshape should not be executed on TPU as all are marked by outside
    // compilation. And there should be no host-device communication.
    // CHECK: tf._TPUCompileMlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      if (lower_to_xla_hlo) {
        // Legalize any StableHLO ops to MHLO. Bridge still doesn't use StableHLO
        // but such ops might be present in the input from upstream like TFRT
        // compilation. Later on, this could be merged in the legalization pass when
        // we migrate bridge to StableHLO.
    
        // TODO(b/259459405): Avoid this peculiar use through some refactoring in
        // the caller.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_tail_with_tobool_op.mlir

    // RUN: tf-opt %s -tf-replicated-clustering-bridge-v2 -tfrt-lower-cluster-to-runtime-ops-tpu 2>&1 | FileCheck %s
    
    // This test verifies that the tail extraction is not terminated prematurely
    // in handling tf.If op which would end up with excessive host-device
    // communication.
    
    // In this test, all ops other than tf.Rank are marked with outside_compilation
    // . So the TPU program should contain tf.Rank op and there should be no
    // host-device communication.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

            "@llvm-project//mlir:Pass",
            "@llvm-project//mlir:Support",
            "@llvm-project//mlir:TransformUtils",
        ],
    )
    
    cc_library(
        name = "bridge",
        srcs = ["bridge.cc"],
        hdrs = ["bridge.h"],
        deps = [
            ":tensorflow_passes",
            "//tensorflow/compiler/mlir/tensorflow:dump_mlir_util",
            "//tensorflow/compiler/mlir/tensorflow:error_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/mlprogram.cc

    #include <string>
    #include <utility>
    
    #include "llvm/ADT/STLFunctionalExtras.h"
    #include "llvm/ADT/Twine.h"
    #include "mlir/Transforms/Passes.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/transforms/bridge.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:39:15 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo.cc

        xla::CompileOnlyClient* client, XlaCompilationResult* compilation_result) {
      LOG_FIRST_N(INFO, 1) << "Compiling MLIR computation to XLA HLO using the "
                              "Combined MLIR Tf2Xla Bridge.";
    
      absl::StatusOr<std::string> mlir_compilation =
          internal::CompileFromMlirToXlaHlo(
              /*lower_to_xla_hlo=*/false, computation, metadata, device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top