@@ -260,7 +260,7 @@ torchMlirTorchNonValueTensorTypeGetWithLeastStaticInformation(
260260MLIR_CAPI_EXPORTED MlirType
261261torchMlirTorchNonValueTensorTypeGetFromAttribute (MlirAttribute attr );
262262
263- /// Gets the the rank (number of dimensions) of a !torch.tensor
263+ /// Gets the rank (number of dimensions) of a !torch.tensor
264264MLIR_CAPI_EXPORTED int64_t torchMlirTorchNonValueTensorTypeGetRank (MlirType t );
265265
266266/// Return true if this type has a list of sizes.
@@ -269,12 +269,12 @@ MLIR_CAPI_EXPORTED bool torchMlirTorchNonValueTensorTypeHasSizes(MlirType t);
269269/// Return true if this type has a dtype.
270270MLIR_CAPI_EXPORTED bool torchMlirTorchNonValueTensorTypeHasDtype (MlirType t );
271271
272- /// Gets the the sizes of the dimensions of a !torch.tensor; note -1 size
272+ /// Gets the sizes of the dimensions of a !torch.tensor; note -1 size
273273/// indicates an unrefined/unknown size dimension.
274274MLIR_CAPI_EXPORTED int64_t
275275torchMlirTorchNonValueTensorTypeGetSizes (MlirType t , int64_t * sizes );
276276
277- /// Gets the the dtype (data type) of a !torch.tensor.
277+ /// Gets the dtype (data type) of a !torch.tensor.
278278MLIR_CAPI_EXPORTED MlirType
279279torchMlirTorchNonValueTensorTypeGetDtype (MlirType t );
280280
@@ -307,7 +307,7 @@ torchMlirTorchValueTensorTypeGetWithLeastStaticInformation(MlirContext context);
307307MLIR_CAPI_EXPORTED MlirType
308308torchMlirTorchValueTensorTypeGetFromAttribute (MlirAttribute attr );
309309
310- /// Gets the the rank (number of dimensions) of a !torch.vtensor
310+ /// Gets the rank (number of dimensions) of a !torch.vtensor
311311MLIR_CAPI_EXPORTED int64_t torchMlirTorchValueTensorTypeGetRank (MlirType t );
312312
313313/// Return true if this type has a list of sizes.
@@ -316,12 +316,12 @@ MLIR_CAPI_EXPORTED bool torchMlirTorchValueTensorTypeHasSizes(MlirType t);
316316/// Return true if this type has a dtype.
317317MLIR_CAPI_EXPORTED bool torchMlirTorchValueTensorTypeHasDtype (MlirType t );
318318
319- /// Gets the the sizes of the dimensions of a !torch.vtensor; note -1 size
319+ /// Gets the sizes of the dimensions of a !torch.vtensor; note -1 size
320320/// indicates an unrefined/unknown size dimension.
321321MLIR_CAPI_EXPORTED int64_t
322322torchMlirTorchValueTensorTypeGetSizes (MlirType t , int64_t * sizes );
323323
324- /// Gets the the dtype (data type) of a !torch.vtensor.
324+ /// Gets the dtype (data type) of a !torch.vtensor.
325325MLIR_CAPI_EXPORTED MlirType torchMlirTorchValueTensorTypeGetDtype (MlirType t );
326326
327327/// Gets the !torch.vtensor typeid.
0 commit comments