Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for is_unbounded_dynamic (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    }
    
    bool ShapeInference::InferShapeForXlaGatherOp(XlaGatherOp op) {
      xla::Shape input_shape = xla::TypeToShape(op.getOperand().getType());
      if (input_shape == xla::Shape() || input_shape.is_unbounded_dynamic())
        return false;
    
      xla::Shape start_indices_shape =
          xla::TypeToShape(op.getStartIndices().getType());
      if (start_indices_shape == xla::Shape()) return false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top