📄 mpiu_memcpy.tex
字号:
\startmanpage\mantitle{MPIU{\tt \char`\_}Memcpy}{tex}{10/7/2002}\manname{MPIU{\tt \char`\_}Memcpy}--- Copy memory \subhead{Synopsis}\startvb\begin{verbatim}void *MPIU_Memcpy( void *dest, const void *src, size_t n )\end{verbatim}\endvb\subhead{Input Parmeters}\startarg{src }{Pointer to memory to copy}\startarg{n }{Number of bytes to copy}\par\subhead{Output Parameters}\startarg{dest }{Pointer to destination to copy {\tt src} into.}\par\subhead{Return value}Also {\tt dest}.\par\subhead{Notes}{\tt MPID{\tt \char`\_}Memcpy} is included because on some systems, faster memory copiescan be written than are provided by the system libraries. For example,system routines may be prohibited from using wide load and store operations,while user-code and other libraries (such as MPICH) are allowed to usethese faster instructions. On systems where the {\tt memcpy} routine isefficient, this routine may be defined as\begin{verbatim} #define MPID_Memcpy( dest, src, n ) memcpy( dest, src, n )\end{verbatim}\par\subhead{Module}Utility\endmanpage
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -