1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
Description: fix typos
files only exist on amd64
Author: Andreas Beckmann <anbe@debian.org>
Forwarded: not-needed
--- a/nvidia-cuda/libcufile/gds/man/man3/cufile.h.3
+++ b/nvidia-cuda/libcufile/gds/man/man3/cufile.h.3
@@ -492,7 +492,7 @@ CU_FILE_NVFS_DRIVER_ERROR
.PP
CU_FILE_INVALID_VALUE
.PP
-CU_FILE_CUDA_ERROR for unsuported memory type
+CU_FILE_CUDA_ERROR for unsupported memory type
.PP
CU_FILE_MEMORY_ALREADY_REGISTERED on error
.PP
@@ -810,7 +810,7 @@ read data from a registered file handle
.br
\fIsize\fP size bytes to read
.br
-\fIfile_offset\fP file-offset from begining of the file
+\fIfile_offset\fP file-offset from beginning of the file
.br
\fIbufPtr_offset\fP offset relative to the bufPtr_base pointer to read into\&.
.RE
@@ -860,7 +860,7 @@ This is useful for applications that nee
.PP
\fBParameters:\fP
.RS 4
-\fIfile_offset_p\fP pointer to file-offset from begining of the file
+\fIfile_offset_p\fP pointer to file-offset from beginning of the file
.br
\fIbufPtr_offset_p\fP pointer to offset relative to the bufPtr_base pointer to read into\&.
.br
@@ -1004,7 +1004,7 @@ write data from a specified device or ho
.br
\fIsize\fP size bytes to write
.br
-\fIfile_offset\fP file-offset from begining of the file
+\fIfile_offset\fP file-offset from beginning of the file
.br
\fIbufPtr_offset\fP offset relative to the bufPtr_base pointer to write from\&.
.RE
@@ -1054,7 +1054,7 @@ This is useful for applications that nee
.PP
\fBParameters:\fP
.RS 4
-\fIfile_offset_p\fP pointer to file-offset from begining of the file
+\fIfile_offset_p\fP pointer to file-offset from beginning of the file
.br
\fIbufPtr_offset_p\fP pointer to offset relative to the bufPtr_base pointer to write from\&.
.br
--- a/nvidia-cuda/libcufile/include/cufile.h
+++ b/nvidia-cuda/libcufile/include/cufile.h
@@ -349,7 +349,7 @@ void cuFileHandleDeregister(CUfileHandle
* @return CU_FILE_SUCCESS on success
* @return CU_FILE_NVFS_DRIVER_ERROR
* @return CU_FILE_INVALID_VALUE
- * @return CU_FILE_CUDA_ERROR for unsuported memory type
+ * @return CU_FILE_CUDA_ERROR for unsupported memory type
* @return CU_FILE_MEMORY_ALREADY_REGISTERED on error
* @return CU_FILE_GPU_MEMORY_PINNING_FAILED if not enough pinned memory is available
* @note This memory will be use to perform GPU direct DMA from the supported storage.
@@ -382,7 +382,7 @@ CUfileError_t cuFileBufDeregister(const
* @param fh @ref CUfileHandle_t opaque file handle
* @param bufPtr_base base address of buffer in device or host memory
* @param size size bytes to read
- * @param file_offset file-offset from begining of the file
+ * @param file_offset file-offset from beginning of the file
* @param bufPtr_offset offset relative to the bufPtr_base pointer to read into.
*
* @return size of bytes successfully read
@@ -406,7 +406,7 @@ ssize_t cuFileRead(CUfileHandle_t fh, vo
* @param fh @ref CUfileHandle_t opaque file handle
* @param bufPtr_base base address of buffer in device or host memory
* @param size size bytes to write
- * @param file_offset file-offset from begining of the file
+ * @param file_offset file-offset from beginning of the file
* @param bufPtr_offset offset relative to the bufPtr_base pointer to write from.
*
* @return size of bytes successfully written
@@ -605,7 +605,7 @@ void cuFileBatchIODestroy(CUfileBatchHan
* @param bufPtr_base base address of buffer in device or host memory
* @param size_p pointer to size bytes to read
* @note *size_p if the size is not known at the time of submission, then must provide the max possible size for I/O request.
- * @param file_offset_p pointer to file-offset from begining of the file
+ * @param file_offset_p pointer to file-offset from beginning of the file
* @param bufPtr_offset_p pointer to offset relative to the bufPtr_base pointer to read into.
* @param bytes_read_p pointer to the number of bytes that were successfully read.
* @param CUstream stream cuda stream for the operation.
@@ -638,7 +638,7 @@ CUfileError_t cuFileReadAsync(CUfileHand
* @param bufPtr_base base address of buffer in device or host memory
* @param size_p pointer to size bytes to write.
* @note *size_p if the size is not known at the time of submission, then must provide the max possible size for I/O request.
- * @param file_offset_p pointer to file-offset from begining of the file
+ * @param file_offset_p pointer to file-offset from beginning of the file
* @param bufPtr_offset_p pointer to offset relative to the bufPtr_base pointer to write from.
* @param bytes_written_p pointer to the number of bytes that were successfully written.
* @param CUstream cuda stream for the operation.
|