Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for PartitionedCall (0.3 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_calibration_statistics_saver_with_skipping.mlir

    func.func @serving_default(%arg0: tensor<1x3x4x3xf32>) -> (tensor<1x2x2x2xf32>) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input_tensor:0", outputs = "PartitionedCall:0"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

        : (tensor<!tf_type.resource>, tensor<i1>) -> tensor<!tf_type.resource>
      // CHECK: "tf.PartitionedCall"
      // CHECK-SAME: f = @callee_stack_decomposed
      %call2 = "tf.PartitionedCall"(%stack, %arg0) {f = @callee, config = "", config_proto = "", executor_type = ""}
        : (tensor<!tf_type.resource>, tensor<i1>) -> tensor<!tf_type.resource>
      // CHECK: "tf.Slice"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/replace_cast_hacks_with_tf_xla_ops.mlir

        %cst_7 = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
        %0 = "tf.PartitionedCall"(%arg0, %cst_1, %cst_2) {config = "", config_proto = "", executor_type = "", f = @quantize_i8} : (tensor<1x3x4x3xf32>, tensor<f32>, tensor<i32>) -> tensor<1x3x4x3xi8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 81K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/build_xla_ops_pass.cc

    // PartitionedCall are placed on the host, a producer that produces them on the
    // device will incur a D2H copy, even if the PartitionedCall is not executed
    // (i.e. even if we choose to execute the XLA compiled computation via _XlaRun).
    // To prevent this, we add control dependencies to make the int32 input edges
    // into the PartitionedCall dead.  With this change the D2H copy only happens if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/analyze-variables.mlir

        func.return %2 : tensor<*xi32>
      }
    }
    
    // -----
    
    // CHECK: module attributes {tfl._legalize_tfl_variables = true}
    module {
      func.func @main() -> tensor<*xi32> {
        %0 = "tf.PartitionedCall"() {f = @f, config = "", config_proto = "", executor_type = ""}
          : () -> tensor<*xi32>
        func.return %0 : tensor<*xi32>
      }
      func.func @f() -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 11:49:28 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

        : (tensor<!tf_type.resource>) -> tensor<!tf_type.resource>
      // CHECK: "tf.PartitionedCall"(%[[VAR]], %[[GVAR1]], %[[GVAR2]])
      // CHECK-SAME: f = @callee_tensorarray_decomposed
      %call2 = "tf.PartitionedCall"(%call) {f = @callee, config = "", config_proto = "", executor_type = ""}
        : (tensor<!tf_type.resource>) -> tensor<!tf_type.resource>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.cc

      Option<bool> skip_partitioned_calls_{
          *this, "skip-partitioned-calls",
          ::llvm::cl::desc(
              "Skip tf.StatefulPartitionedCall and tf.PartitionedCall")};
    };
    
    void TFToMhloPass::runOnOperation() {
      auto func = getOperation();
      MLIRContext *context = func->getContext();
    
      RewritePatternSet patterns(context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_xla.mlir

    // CHECK-NEXT: [[q_bias:%.+]] = "quantfork.qcast"([[bias]]) : (tensor<2xf32>) -> tensor<2x!quant.uniform<i32:f32, 0.044022349891595126>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

        up creating nested XLA launch ops.
    
        For example, the `tf.PartitionedCall` operation in the following code
    
        ```mlir
        func.func @convert_partitioned_call_with_resources(%arg0: tensor<!tf_type.resource>, %arg1: tensor<i32>) -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilability_check_util_test.cc

      *library.add_function() = identity_func;
    
      Output in = ops::Placeholder(root, DT_FLOAT);
      NameAttrList b_name_attr;
      b_name_attr.set_name("IdentityFunc");
      ops::PartitionedCall call(root.WithOpName("call"), {in}, {DT_FLOAT},
                                b_name_attr);
    
      GraphDef graph_def;
      TF_ASSERT_OK(root.graph()->AddFunctionLibrary(library));
      TF_ASSERT_OK(root.ToGraphDef(&graph_def));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
Back to top