@@ -260,7 +260,7 @@ torchMlirTorchNonValueTensorTypeGetWithLeastStaticInformation(
260
260
MLIR_CAPI_EXPORTED MlirType
261
261
torchMlirTorchNonValueTensorTypeGetFromAttribute (MlirAttribute attr );
262
262
263
- /// Gets the the rank (number of dimensions) of a !torch.tensor
263
+ /// Gets the rank (number of dimensions) of a !torch.tensor
264
264
MLIR_CAPI_EXPORTED int64_t torchMlirTorchNonValueTensorTypeGetRank (MlirType t );
265
265
266
266
/// Return true if this type has a list of sizes.
@@ -269,12 +269,12 @@ MLIR_CAPI_EXPORTED bool torchMlirTorchNonValueTensorTypeHasSizes(MlirType t);
269
269
/// Return true if this type has a dtype.
270
270
MLIR_CAPI_EXPORTED bool torchMlirTorchNonValueTensorTypeHasDtype (MlirType t );
271
271
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
273
273
/// indicates an unrefined/unknown size dimension.
274
274
MLIR_CAPI_EXPORTED int64_t
275
275
torchMlirTorchNonValueTensorTypeGetSizes (MlirType t , int64_t * sizes );
276
276
277
- /// Gets the the dtype (data type) of a !torch.tensor.
277
+ /// Gets the dtype (data type) of a !torch.tensor.
278
278
MLIR_CAPI_EXPORTED MlirType
279
279
torchMlirTorchNonValueTensorTypeGetDtype (MlirType t );
280
280
@@ -307,7 +307,7 @@ torchMlirTorchValueTensorTypeGetWithLeastStaticInformation(MlirContext context);
307
307
MLIR_CAPI_EXPORTED MlirType
308
308
torchMlirTorchValueTensorTypeGetFromAttribute (MlirAttribute attr );
309
309
310
- /// Gets the the rank (number of dimensions) of a !torch.vtensor
310
+ /// Gets the rank (number of dimensions) of a !torch.vtensor
311
311
MLIR_CAPI_EXPORTED int64_t torchMlirTorchValueTensorTypeGetRank (MlirType t );
312
312
313
313
/// Return true if this type has a list of sizes.
@@ -316,12 +316,12 @@ MLIR_CAPI_EXPORTED bool torchMlirTorchValueTensorTypeHasSizes(MlirType t);
316
316
/// Return true if this type has a dtype.
317
317
MLIR_CAPI_EXPORTED bool torchMlirTorchValueTensorTypeHasDtype (MlirType t );
318
318
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
320
320
/// indicates an unrefined/unknown size dimension.
321
321
MLIR_CAPI_EXPORTED int64_t
322
322
torchMlirTorchValueTensorTypeGetSizes (MlirType t , int64_t * sizes );
323
323
324
- /// Gets the the dtype (data type) of a !torch.vtensor.
324
+ /// Gets the dtype (data type) of a !torch.vtensor.
325
325
MLIR_CAPI_EXPORTED MlirType torchMlirTorchValueTensorTypeGetDtype (MlirType t );
326
326
327
327
/// Gets the !torch.vtensor typeid.
0 commit comments