Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 120 for bef_executor (0.16 sec)

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

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_remaining_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/verify_suitable_for_graph_export.h"
    
    namespace mlir {
    namespace tf_executor {
    namespace {
    
    // Comparator for `OpsInReverseProgramOrder`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_inline_tpu_island.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
    
    #define DEBUG_TYPE "tf-executor-tpu-v1-island-inlining"
    
    namespace mlir {
    namespace tf_executor {
    
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #         "//tensorflow/core/runtime_fallback/util:tensor_util",
    #         "//tensorflow/core/tfrt/utils:fallback_tensor",
    #         "@eigen_archive//:eigen3",
    #         "@tf_runtime//:bef",
    #         "@tf_runtime//:befexecutor",
    #         "@tf_runtime//:core_runtime_alwayslink",
    #         "@tf_runtime//:hostcontext_alwayslink",
    #         "@tf_runtime//:mlirtobef",
    #         "@tf_runtime//:support",
    #         "@tf_runtime//:tensor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/parse_example.pbtxt

    # CHECK: %[[output:.*]], %[[control:.*]]tf_executor.island wraps "tf.ParseExample"
    # CHECK: operandSegmentSizes = array<i32: 1, 1, 0, 1, 1>
    # CHECK: resultSegmentSizes = array<i32: 0, 0, 0, 1>
    # CHECK: tf_executor.fetch %[[output]] : tensor<*xi64>
    
    node {
      name: "serilaized"
      op: "Const"
      attr {
        key: "dtype"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_opt.cc

    #include "tensorflow/compiler/mlir/init_mlir.h"
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    #include "tensorflow/compiler/mlir/tensorflow/dialect_registration.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    
    int main(int argc, char **argv) {
      tensorflow::InitMlir y(&argc, &argv);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:20:34 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that converts mlir functions consisting of mlir ops into a
    // tf_executor dialect as a single island.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateFunctionalToExecutorDialectConversionPass();
    
    // Creates a pass that lifts inner ops of tf_executor.island ops in
    // tf_executor.graph into the same block as the tf_executor.graph.
    std::unique_ptr<OperationPass<func::FuncOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration_test.cc

      %graph:2 = tf_executor.graph {
        %0:2 = tf_executor.island wraps "tf.Const"() {device = "", dtype = "tfdtype$DT_HALF", value = dense<1.0> : tensor<1x2xf16>} : () -> tensor<1x2xf16> loc("const1")
        %1:2 = tf_executor.island wraps "tf.Const"() {device = "", dtype = "tfdtype$DT_HALF", value = dense<[1.0, 2.0]> : tensor<2xf16>} : () -> tensor<2xf16> loc("const2")
        tf_executor.fetch %0#0, %1#0 : tensor<1x2xf16>, tensor<2xf16>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 23:11:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    // Lowers MLIR module to XLA HLO inside an XlaComputation. The input module
    // should only contain operations in tf dialect. If the input module contains
    // operation in the tf_executor dialect, for example, returns an error.
    // Exception to this are tf_executor dialect ops that are optimized away through
    // canonicalization.
    //
    // Operations in tf dialect are lowered to XLA HLO through the following steps:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

    // outputs to generate a single control output.
    //
    // For example,
    // ```
    // %merged_control = "tf_executor.island"(%control_a, %control_b) ({
    //   "tf.NoOp"() : () -> ()
    //   "tf_executor.yield"() : () -> ()
    // }) : (!tf_executor.control, !tf_executor.control) -> (!tf_executor.control)
    // ```
    //
    // `%merged_control` is a NoOp control barrier in this case.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

            new llvm::SmallDenseSet<mlir::TypeID, 32>{
                TypeID::get<mlir::ModuleOp>(),
                TypeID::get<mlir::tf_executor::GraphOp>(),
                TypeID::get<mlir::func::ReturnOp>(),
                TypeID::get<mlir::func::FuncOp>(),
                TypeID::get<mlir::tf_executor::YieldOp>(),
                TypeID::get<mlir::tf_executor::IslandOp>(),
                TypeID::get<TF::TPUReplicatedInputOp>(),
                TypeID::get<TF::TPUReplicatedOutputOp>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top