Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for ExpandDimsOp (0.22 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          input_shape.insert(input_shape.begin() + dim_to_expand, 1);
          TensorType expanded_type = input_type.clone(input_shape);
          input = rewriter.create<TFL::ExpandDimsOp>(op.getLoc(), expanded_type,
                                                     input, dim);
    
          // Update expanded dimension in the input dimensions for the next
          // iteration.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            RankedTensorType::get({}, rewriter.getI64Type()), {i});
        Value index = rewriter.create<TF::ConstOp>(output.getLoc(), index_attr);
        expanded_input = rewriter.create<TF::ExpandDimsOp>(output.getLoc(),
                                                           expanded_input, index);
      }
      return expanded_input;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top