Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for bef_executor (0.27 sec)

  1. tensorflow/compiler/mlir/tfrt/BUILD

            [
                "//third_party/tf_runtime_llvm:tfrt_translate_main",
            ],
            ["@tf_runtime//third_party/llvm_derived:tfrt_translate_main"],
        ),
    )
    
    tf_cc_binary(
        name = "bef_executor",
        testonly = True,
        visibility = [":friends"],
        deps = [
            "@tf_runtime//:dtype",
            "@tf_runtime//:simple_tracing_sink",
            "@tf_runtime//tools:bef_executor_expensive_kernels",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        return isa<tf_executor::IslandOp>(region->getParentOp());
      }
    };
    
    }  // namespace
    
    TensorFlowExecutorDialect::TensorFlowExecutorDialect(MLIRContext *context)
        : Dialect(/*name=*/"tf_executor", context,
                  TypeID::get<TensorFlowExecutorDialect>()) {
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc.inc"
          >();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

          tf_executor.yield %const : tensor<*xi1>
        }
        %loop_cond:2 = tf_executor.LoopCond %island#0 : tensor<*xi1>
        tf_executor.fetch %loop_cond#0 : tensor<*xi1>
      }
      func.return
    }
    
    // CHECK: %[[CONTROL:[^ ,]*]] = tf_executor.island wraps "tf.Print"
    // CHECK: tf_executor.Enter {{.*}}, %[[CONTROL]]
    func.func @enter_control_input() {
      tf_executor.graph {
        %island:2 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_validate_inputs.mlir

        %control = tf_executor.island() wraps "tf.TPUReplicateMetadata"() {_tpu_replicate = "cluster", device = "/device:TPU:0", num_replicas = 2, topology = "topology"} : () -> ()
        %ri, %c0 = tf_executor.island wraps "tf.TPUReplicatedInput"(%arg0, %arg1) {index = 1 : i64, is_mirrored_variable = false, is_packed = false} : (tensor<i32>, tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

    func.func @multiple_func_body_ops() {
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    }
    
    // -----
    
    // Check that tf_executor.graph can't be nested directly in a tf_executor.graph.
    func.func @nested_graph() {
      tf_executor.graph {
        tf_executor.graph {}
    // expected-error@-1 {{'tf_executor.graph' op unallowed directly inside another tf_executor.graph}}
      }
      func.return
    }
    
    // -----
    
    // Check that a tf_executor.fetch is terminating a tf_executor.graph (custom parser)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/outside_compilation.mlir

          %control_90 = tf_executor.island(%control_28, %control_87) wraps "tf.NoOp"() {device = ""} : () -> ()
          %outputs_91, %control_92 = tf_executor.island(%control_90) wraps "tf.Identity"(%outputs_88) {device = ""} : (tensor<i1>) -> tensor<*xi1>
          tf_executor.fetch %outputs_91, %control_28, %control_87 : tensor<*xi1>, !tf_executor.control, !tf_executor.control
        }
        return %0 : tensor<*xi1>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:19:45 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/split_into_island_per_op.mlir

    func.func @multiple_func_body_ops() {
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

        auto executor_graph =
            rewriter.create<tf_executor::GraphOp>(loc, func_type.getResults());
        rewriter.inlineRegionBefore(graph.getNodes(), executor_graph.getBody(),
                                    executor_graph.getBody().end());
    
        // Add terminator of tf_executor::graph
        rewriter.setInsertionPointToEnd(&executor_graph.getBody().front());
        rewriter.create<tf_executor::FetchOp>(loc);
    
        // Add terminator of func
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island.mlir

    func.func @controls_per_replica() {
      tf_executor.graph {
        %1 = tf_executor.ControlTrigger {}
        %2 = tf_executor.ControlTrigger {}
        %3 = tf_executor.island(%1, %2) {
          tf_device.replicate {n = 2 : i32} {
            tf_device.return
          }
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK: %[[CT_0:.*]] = tf_executor.ControlTrigger
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top