Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for dynamic_update_slice (0.25 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                            {}, indices_type.getElementType()));
        // Note on zero_attr integer type: DynamicUpdateSlice op start_indices are
        // required to have matching types. This rewrite rule creates
        // DynamicUpdateSlice ops where the first "start index" is always i32 and
        // subsequent ones are constructed based on zero_attr. Thus the type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      // Assert that the tensor list operation is lowered to something that doesn't
      // get stuck on a broken dynamic update slice.
      ASSERT_THAT(compilation_result,
                  Not(ComputationProtoContains("%.*=.*DynamicUpdateSlice")));
    }
    
    TEST(LegalizeTFTest, LegalizesFunctionWithBoundedDynamicArg) {
      static constexpr char kMlirModuleWithBoundedDynamicArgStr[] = R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            op, input.getType(), scalar_zero,
            ArrayRef<Value>({slice1, expanded_item, slice2}));
        return success();
      }
    
      // This function rewrites the original op into a XLA DynamicUpdateSlice op.
      // |item| is expanded to have the same dimension as input_handle and
      // |index| is expanded to [index, 0, 0, ...] as the indices to input_handle.
      // On a high level, it's doing something like:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_XlaDynamicUpdateSliceOp : TF_Op<"XlaDynamicUpdateSlice", [Pure, TF_NoConstantFold]> {
      let summary = "Wraps the XLA DynamicUpdateSlice operator, documented at";
    
      let description = [{
    https://www.tensorflow.org/performance/xla/operation_semantics#dynamicupdateslice
    .
    
    XlaDynamicUpdateSlice generates a result which is the value of the `input`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. RELEASE.md

            ML authoring is generally discouraged.
        *   Add support for unsigned 16-bit integer tensor types in cast op.
        *   Experimental support for lowering `list_ops.tensor_list_set_item` with
            `DynamicUpdateSlice`.
        *   Enabled a new MLIR-based dynamic range quantization backend by default
            *   The new backend is used for post-training int8 dynamic range
                quantization and post-training float16 quantization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top