⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ad_hfs_write.c

📁 mpi并行计算的c++代码 可用vc或gcc编译通过 可以用来搭建并行计算试验环境
💻 C
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//*  * *   Copyright (C) 1997 University of Chicago.  *   See COPYRIGHT notice in top-level directory. */#include "ad_hfs.h"void ADIOI_HFS_WriteContig(ADIO_File fd, void *buf, int count,                      MPI_Datatype datatype, int file_ptr_type,		     ADIO_Offset offset, ADIO_Status *status, int *error_code){    int err=-1, datatype_size, len;#ifndef PRINT_ERR_MSG    static char myname[] = "ADIOI_HFS_WRITECONTIG";#endif    MPI_Type_size(datatype, &datatype_size);    len = datatype_size * count;#ifdef SPPUX    fd->fp_sys_posn = -1; /* set it to null, since we are using pwrite */    if (file_ptr_type == ADIO_EXPLICIT_OFFSET) 	err = pwrite64(fd->fd_sys, buf, len, offset);    else {    /* write from curr. location of ind. file pointer */	err = pwrite64(fd->fd_sys, buf, len, fd->fp_ind);	fd->fp_ind += err;    }#endif#ifdef HPUX    if (file_ptr_type == ADIO_EXPLICIT_OFFSET) {	if (fd->fp_sys_posn != offset)	    lseek64(fd->fd_sys, offset, SEEK_SET);	err = write(fd->fd_sys, buf, len);	fd->fp_sys_posn = offset + err;	/* individual file pointer not updated */            }    else { /* write from curr. location of ind. file pointer */	if (fd->fp_sys_posn != fd->fp_ind)	    lseek64(fd->fd_sys, fd->fp_ind, SEEK_SET);	err = write(fd->fd_sys, buf, len);	fd->fp_ind += err;	fd->fp_sys_posn = fd->fp_ind;    }#endif#ifdef HAVE_STATUS_SET_BYTES    if (err != -1) MPIR_Status_set_bytes(status, datatype, err);#endif    if (err == -1) {#ifdef MPICH2	*error_code = MPIR_Err_create_code(MPI_SUCCESS, MPIR_ERR_RECOVERABLE, myname, __LINE__, MPI_ERR_IO, "**io",	    "**io %s", strerror(errno));#elif defined(PRINT_ERR_MSG)    *error_code =  MPI_SUCCESS;#else /* MPICH-1 */	*error_code = MPIR_Err_setmsg(MPI_ERR_IO, MPIR_ADIO_ERROR,			      myname, "I/O Error", "%s", strerror(errno));	ADIOI_Error(fd, *error_code, myname);#endif    }    else *error_code = MPI_SUCCESS;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -