Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for PartitionedCall (0.17 sec)

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

    // and non-xla as well. But below function specifically checks for the op to be
    // only XLA op.
    bool IsMustBeXlaOp(Operation* op, MetadataMap metadata_map) {
      // All PartitionedCall are inlined-out before XLA.
      // So MustBeXLA should return false
      if (IsPartitionedOp(op)) return false;
      if (!op->hasAttr(TF::kTpuReplicateAttr)) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_sharding_identification.mlir

      %1:2 = "tf.StatefulPartitionedCall"(%arg0){f= @func_body, config="", config_proto="", executor_type=""}
             : (tensor<*xi32>) -> (tensor<*xi32>, tensor<*xi1>)
      %2 = "tf.PartitionedCall"(%arg1) {config = "", config_proto = "", executor_type = "", f = @pcall_func_body} : (tensor<*xi1>) -> (tensor<i32>)
      %3, %4 = "tf.A"(%1#0, %2) : (tensor<*xi32>, tensor<i32>) -> (tensor<*xi32>, tensor<*xi1>)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 19:07:52 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

            %0 = stablehlo.constant dense<[-0.211145893, -0.708605706]> : tensor<2xf32>
            %1 = stablehlo.constant dense<[[-0.630731344, 0.54962182], [0.180364341, -0.764542698]]> : tensor<2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

        }
      }
      if_op.replaceAllUsesWith(new_if);
      if_op.erase();
      return success();
    }
    
    // Handles stack usage by a tf.StatefulPartitionedCall or a tf.PartitionedCall.
    // It will first check if the callee was previously handled, and try to reuse
    // that result if so. Otherwise, it will clone and convert the callee function,
    // and performs stack ops decomposition on it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

                MHLO_Tensor:$on_false),
               (CHLO_BroadcastSelectOp $pred, $on_true, $on_false)>;
    
    //===----------------------------------------------------------------------===//
    // PartitionedCall and LegacyCall op patterns.
    //===----------------------------------------------------------------------===//
    
    def ArgTypesMatchCallee : Constraint<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK-NEXT: [[results_1:%.*]] = call @callee(
      // CHECK-SAME: (!tf_mlrt.tensor) -> !tf_mlrt.tensor
      %2 = "tf.PartitionedCall"(%0) {config = "", config_proto = "", executor_type = "", f = @callee} : (tensor<i32>) -> (tensor<i32>)
      // CHECK-NEXT: [[results_2:%.*]] = call @callee(
      // CHECK-SAME: (!tf_mlrt.tensor) -> !tf_mlrt.tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

                                                    arg_buffer_size_is_fixed(i)};
        }
      }
      UpdateFuncType(func);
    }
    
    // Holds information about a decomposed callee function for
    // PartitionedCall/StatefulPartitionedCall.
    struct PartitionedCallDecompositionInfo {
      bool signature_change;
      func::FuncOp decomposed_callee;
      llvm::SmallDenseMap<int64_t, int64_t> buffer_arg_to_size_arg;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
Back to top