Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for XlaDynamicSlice (0.28 sec)

  1. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.h

    // shown above jit/partially_decluster_pass extracts the actual_size(...)
    // computation to outside the XLA cluster, causing the cluster to be versioned
    // only on the actual size of the XlaDynamicSlice.  This avoids recompilation
    // due to superficial changes that don't affect tensor shapes.
    //
    // Future Work TODO(b/111210515)
    // -----------------------------
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 26 21:01:34 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_ops_on_regular_devices.cc

                              XlaCompileOnDemandOp);                               \
      REGISTER_KERNEL_BUILDER(                                                     \
          Name("XlaDynamicSlice").HostMemory("size_indices").Device(DEVICE),       \
          XlaCompileOnDemandOp);                                                   \
      REGISTER_KERNEL_BUILDER(Name("XlaDynamicUpdateSlice").Device(DEVICE),        \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 19:55:14 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

              [(HasValidDotDims $dimension_numbers), (HasValidPrecisionConfig $precision_config)]>;
    
    //===----------------------------------------------------------------------===//
    // XlaDynamicSlice op.
    //===----------------------------------------------------------------------===//
    
    def : Pat<(TF_XlaDynamicSliceOp:$op MHLO_Tensor:$input, MHLO_Tensor:$starting_indices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util.cc

                                             "XlaDequantize",
                                             "XlaDot",
                                             "XlaDotV2",
                                             "XlaDynamicSlice",
                                             "XlaDynamicUpdateSlice",
                                             "XlaEinsum",
                                             "XlaGather",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %0 = "tf.XlaDynamicSlice"(%arg0, %arg1, %sizes) : (tensor<3x4xi32>, tensor<2xi64>, tensor<2xi64>) -> tensor<1x4xi32>
      func.return %0 : tensor<1x4xi32>
    }
    
    // -----
    
    // CHECK-LABEL: xla_dynamic_slice_mhlo_sizes
    func.func @xla_dynamic_slice_mhlo_sizes(%arg0: tensor<1x1024x4xf32>, %arg1: tensor<3xi32>) -> tensor<1x512x4xf32> {
      // CHECK-NOT: "tf.XlaDynamicSlice"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      TF_DerivedOperandTypeAttr RhsT = TF_DerivedOperandTypeAttr<1>;
      TF_DerivedResultTypeAttr preferred_element_type = TF_DerivedResultTypeAttr<0>;
    }
    
    def TF_XlaDynamicSliceOp : TF_Op<"XlaDynamicSlice", [Pure, TF_NoConstantFold]> {
      let summary = "Wraps the XLA DynamicSlice operator, documented at";
    
      let description = [{
    https://www.tensorflow.org/performance/xla/operation_semantics#dynamicslice
    .
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top