Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 228 for l2bridge (0.39 sec)

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

          // "tf_saved_model.initializer_type" attribute from the callee of the
          // inner calls if the problem ever arises.
          entry_func->emitError()
              << "TF2XLA MLIR Non-replicated Phase 1 Bridge expects no nested calls"
                 " of entry functions as they prevent graph traversal in some "
                 "passes from "
                 "working correctly";
          return failure();
        }
      }
      return success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 19:29:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/BUILD

    # Description:
    #    TF2XLA Bridge and related components.
    
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package_group(
        name = "tensorflow_mlir_tf2xla",
        packages = [
            "//tensorflow/compiler/mlir/tf2xla/...",
        ],
    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 970 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. android/guava/src/com/google/common/collect/SortedMultisetBridge.java

    import com.google.common.annotations.GwtIncompatible;
    import java.util.SortedSet;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Superinterface of {@link SortedMultiset} to introduce a bridge method for {@code elementSet()},
     * to ensure binary compatibility with older Guava versions that specified {@code elementSet()} to
     * return {@code SortedSet}.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.h

    #include "absl/base/attributes.h"
    #include "llvm/ADT/StringRef.h"
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    // Given the pass manager, add Bridge passes to cluster the replicated input
    // graphs.
    void AddReplicatedBridgeClusteringPipelinePasses(
        mlir::OpPassManager& pm, llvm::StringRef module_name = llvm::StringRef());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:39:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules2.txt

        enclosing method MainKt.test()I
        public final static field INSTANCE: MainKt$test$1
        inner (anonymous) class MainKt$test$1
        static method <clinit>(): void
        method <init>(): void
        public synthetic bridge method invoke(): java.lang.Object
        public final method invoke(): void
    }
    
    public final class MainKt {
        // source: 'main.kt'
        inner (anonymous) class MainKt$test$1
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 621 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/end-to-end-tpu-reshard-variables.mlir

    // RUN: tf-opt %s -tf-replicated-clustering-bridge-v2 -tfrt-lower-cluster-to-runtime-ops-tpu 2>&1 | FileCheck %s
    
    // TPUReshardVariables should be inserted even when While functions' shapes are
    // different than While operand shapes. Test the whole tf-tpu-bridge because
    // correct insertion of TPUReshardVariables depends on multiple passes including
    // TPUVariableRuntimeReformatting, ShapeInference, WhileRegion canonicalization,
    // and TPUMergeVariablesWithExecute.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

    // Extract the islands containing a TPU cluster computation into an outlined
    // function in a nested module. This will allow to run the usual bridge on this
    // nested module which exhibit a more friendly "V2-like" structure.
    // This is only intended for V1 compatibility mode where the bridge runs without
    // feed/fetches on session create/extend.
    struct TPUBridgeExecutorIslandOutlining
        : public impl::TPUBridgeExecutorIslandOutliningPassBase<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top