Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for set_dimension (0.34 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            auto concat_option = tflite::CreateStablehloConcatenateOptions(
                builder_,
                mlir::cast<mlir::vhlo::IntegerV1Attr>(vhlo_op.getDimension())
                    .getValue()
                    .getSExtValue());
    
            return tflite::CreateOperator(
                builder_, opcode_index, builder_.CreateVector(operands),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        RankedTensorType index_type = tensorflow::GetTypeFromTFTensorShape(
            input_type.getShape(), index_element_type);
    
        std::optional<int64_t> optional_axis =
            GetIntegerHLOAxisFromTFAxis(op.getDimension(), input_type.getRank());
        if (!optional_axis.has_value())
          return rewriter.notifyMatchFailure(op, "required axis");
        int64_t axis = optional_axis.value();
    
        IntegerAttr iota_dimension =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top