Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CanonicalizeScatterUpdates (0.15 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    //   transpose(updates, permutation={3,4,0,1,2})
    //
    // Note: NormalizeIndexVector is assumed to have run on the indices already so
    // that the index_vector_dim is the trailing dimension in `indices`.
    LogicalResult CanonicalizeScatterUpdates(
        Operation* scatter_op, llvm::ArrayRef<int64_t> update_window_dims,
        const Value& indices, const ShapedType& indices_type, Value& updates,
        ShapedType& updates_type, ConversionPatternRewriter& rewriter);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.cc

    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    
    LogicalResult CanonicalizeScatterUpdates(
        Operation* scatter_op, llvm::ArrayRef<int64_t> update_window_dims,
        const Value& indices, const ShapedType& indices_type, Value& updates,
        ShapedType& updates_type, ConversionPatternRewriter& rewriter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 02:29:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top