Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GatherOp (0.22 sec)

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

          auto batch_axes_tensor =
              builder.create<TFL::ConstOp>(builder.getI64TensorAttr(
                  dot_dimensions_info.batch_dimensions().AxesArray()));
          auto batch_dims = builder.create<TFL::GatherOp>(
              RankedTensorType::get(
                  {static_cast<int>(
                      dot_dimensions_info.batch_dimensions().AxesArray().size())},
                  builder.getIntegerType(32)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec_test.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::mlir::stablehlo::GatherOp;
    using ::testing::IsEmpty;
    using ::testing::IsTrue;
    using ::testing::NotNull;
    using ::testing::Pair;
    using ::testing::UnorderedElementsAre;
    
    using IsOpQuantizableStableHloTest = ::mlir::quant::QuantizationTestBase;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

    using ::mlir::stablehlo::ConcatenateOp;
    using ::mlir::stablehlo::ConvolutionOp;
    using ::mlir::stablehlo::DotGeneralOp;
    using ::mlir::stablehlo::DynamicBroadcastInDimOp;
    using ::mlir::stablehlo::GatherOp;
    using ::mlir::stablehlo::GetDimensionSizeOp;
    using ::mlir::stablehlo::ReshapeOp;
    using ::mlir::stablehlo::UniformQuantizeOp;
    using ::stablehlo::quantization::Method;
    using ::stablehlo::quantization::QuantizedDimension;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      auto gather_lhs = rewriter->create<TF::GatherOp>(
          loc,
          RankedTensorType::get({static_cast<int>(bl_index.size())},
                                rewriter->getIntegerType(32)),
          shape_lhs->getResults()[0], lhs_index_tensor->getResults()[0], true_attr);
      auto rhs_index_tensor = createI32ConstantOp(r_index, loc, rewriter);
      auto gather_rhs = rewriter->create<TF::GatherOp>(
          loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top