Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for bef_executor (0.13 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/g3doc/tf_dialects.md

      %1, %ctl1 = tf_executor.opB : tensor<*xf32>
      %2, %ctl2 = tf_executor.opC %1, %ctl0 : tensor<*xf32>
      %3, %ctl3 = tf_executor.opD %2 : tensor<*xf32>
      tf_executor.fetch %3 : tensor<*xf32>
    } // end of the “tf_executor.graph" operation/region
    ```
    
    ### ‘tf_executor.island’ Operation
    
    The `tf_executor.graph` operation does not allow `tf` dialect operations to be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

            : (tensor<i1>, !tf_res,
               !tf_res) -> ()
          tf_executor.yield
        }
        tf_executor.fetch %island : !tf_executor.control
      }
      func.return
    }
    
    // CHECK-LABEL: func @if_then
    func.func @if_then(
      %arg0: !tf_res,
      %arg1: !tf_res) {
      tf_executor.graph {
        // CHECK: tf_executor.island
        %island = tf_executor.island {
          // CHECK-NEXT: "tf.Identity"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_device_propagation.mlir

        %5:2 = tf_executor.island wraps "tf.Identity"(%3#1) : (tensor<i64>) -> tensor<i64>
        %6 = tf_executor.ControlTrigger %4#1, %5#1
        tf_executor.fetch %6 : !tf_executor.control
      }
      func.return
    }
    
    // Tests tf_executor.NextIteration.Source/tf_executor.NextIteration.Sink has a
    // device when an intermediate op in its loop has a device.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 19K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/executor_tpuv1_island_coarsening.mlir

        %1:2 = tf_executor.island {
          %3 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
          tf_executor.yield %3 : tensor<i1>
        }
        %2:2 = tf_executor.island(%1#1) {
          %4 = "tf.opB"() : () -> tensor<f32>
          tf_executor.yield %4 : tensor<f32>
        }
    
    // CHECK: "tf.opA"
    // CHECK: tf_executor.island
    // CHECK: "tf.opB"
    
        tf_executor.fetch %2#0 : tensor<f32>
      }
      func.return %0 : tensor<f32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 02 03:15:59 UTC 2022
    - 36.2K bytes
    - Viewed (0)
Back to top