Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 231 for bef_executor (2.41 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/verify_suitable_for_graph_export.cc

              << "function does not only contain a single tf_executor.graph";
          return mlir::WalkResult::interrupt();
        }
    
        for (mlir::Operation& op : graph.GetBody()) {
          auto island = llvm::dyn_cast<mlir::tf_executor::IslandOp>(op);
          if (!island) continue;
    
          if (!island.WrapsSingleOp()) {
            island.emitError(kInvalidExecutorGraphMsg)
                << "tf_executor.island must perfectly wrap a single op";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-resource-args.mlir

      %0 = tf_executor.graph {
        %outputs, %control = tf_executor.island wraps "tf.VarHandleOp"() {container = "a", device = "/CPU:0", dtype = i64, shape = "tfshape$", shared_name = "x"} : () -> tensor<!tf_type.resource<tensor<i64>>> loc("x")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/raise-custom-ops.mlir

      %0 = tf_executor.graph {
        %outputs_14, %control_15 = tf_executor.island wraps "tf.Const"() {device = "", value = dense<1.0> : tensor<186xf32>} : () -> tensor<186xf32>
        %outputs_16, %control_17 = tf_executor.island wraps "tf.Const"() {device = "", value = dense<2.0> : tensor<186xf32>} : () -> tensor<186xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/func_attr.mlir

      func.func @main() {
        tf_executor.graph {
          %control = tf_executor.island wraps "tf.NoOp"() {_f = #tf_type.func<@callee, {attr2 = true, attr3 = 8.0 : f32}>} : () -> ()
          %control_1 = tf_executor.island(%control) wraps "tf.LegacyCall"() {f = @callee} : () -> ()
          tf_executor.fetch
        }
        func.return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 16:41:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-resource-args-handle-info.mlir

    func.func @main(%arg0: tensor<*x!tf_type.resource<tensor<8x1xf32>>>) -> tensor<8x1xf32> {
      %0 = tf_executor.graph {
         %outputs, %control = tf_executor.island wraps "tf.ReadVariableOp"(%arg0) : (tensor<*x!tf_type.resource<tensor<8x1xf32>>>) -> tensor<8x1xf32>
         tf_executor.fetch %outputs : tensor<8x1xf32>
      }
      func.return %0 : tensor<8x1xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/multi-output-feeds.pbtxt

    # CHECK-SAME:  outputs = "z:2,z:1,a:0"
    # CHECK:           %{{.*}}, %[[ASSIGN_ADD_CTRL:.*]] = tf_executor.island wraps "tf.AssignAdd"
    # CHECK:           %{{.*}}, %{{.*}} = tf_executor.island(%[[ASSIGN_ADD_CTRL]]) wraps "tf.IdentityN"
    # CHECK:           %[[ADD:.*]], %{{.*}} = tf_executor.island wraps "tf.Add"(%[[ARG_0]], %[[ARG_1]])
    # CHECK:           tf_executor.fetch %[[ARG_1]], %[[ARG_0]], %[[ADD]]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

      %0 = tf_executor.graph {
        %1:2 = tf_executor.island {
          tf_executor.yield %arg0 : tensor<*xf32>  {attr3 = 32 : i64, tf_executor.attr_fetch = "some_value"}
        } {attr2 = 32 : i64, tf_executor.attr1 = "value1"}
    
    // CHECK: tf_executor.yield %{{.*}} : tensor<*xf32>  {attr3 = 32 : i64, tf_executor.attr_fetch = "some_value"}
    // CHECK-NEXT: } {attr2 = 32 : i64, tf_executor.attr1 = "value1"}
    
        tf_executor.fetch %1#0 : tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/legalize_tfg.mlir

    // CHECK: module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 919 : i32}}
    module  {
      // CHECK: tf_executor.graph
      tfg.graph #tf_type.version<producer = 919, min_consumer = 12> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/feed-control-dep.pbtxt

    # CHECK-SAME:  inputs = "input"
    # CHECK-SAME:  outputs = "output_node"
    # CHECK:         %[[GRAPH:[0-9]+]] = tf_executor.graph
    # CHECK:           %[[CONST:.*]], %[[CONST_control:.*]] = tf_executor.island wraps "tf.Const"()
    # CHECK:           %[[OUTPUT:.*]], %[[OUTPUT_control:.*]] = tf_executor.island wraps "tf.Identity"(%[[CONST]])
    # CHECK:           tf_executor.fetch %[[OUTPUT]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning.mlir

    func.func @control_fetch(%arg0 : i32) {
    // CHECK: tf_executor.island
    // CHECK: tf_executor.island
    // CHECK: tf_executor.island
      tf_executor.graph {
        %0 = tf_executor.island {
          tf_executor.yield
        }
        %1:2 = tf_executor.island {
          tf_executor.yield %arg0 : i32
        }
        %2 = tf_executor.island(%0) {
          %a = "tf.opA"(%1#0) : (i32) -> i32
          tf_executor.yield
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 7.8K bytes
    - Viewed (0)
Back to top