Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetInversePermutationArray (0.25 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.cc

        }
        const_value_raw = rewriter.getI32TensorAttr(const_i32_vec);
      }
      Value result_const = builder.create<TF::ConstOp>(const_value_raw);
      return result_const;
    }
    
    llvm::SmallVector<int64_t> GetInversePermutationArray(
        llvm::ArrayRef<int64_t> permutation_array) {
      llvm::SmallVector<int64_t> inverse_permutation_array(
          permutation_array.size());
      const auto permutation_array_size = permutation_array.size();
    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/util.h

                               ArrayRef<int64_t> const_value, Type type);
    
    // Returns the inverse permutation array for a permutation array.
    llvm::SmallVector<int64_t> GetInversePermutationArray(
        llvm::ArrayRef<int64_t> permutation_array);
    
    // Returns the DenseIntElementsAttr for an inverse permutation given a
    // permutation_array.
    DenseIntElementsAttr GetInversePermutation(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 11:35:25 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top