📄 typeattr3f90.f90
字号:
! This file created from test/mpi/f77/attr/typeattr3f.f with f77tof90! -*- Mode: Fortran; -*- !! (C) 2004 by Argonne National Laboratory.! See COPYRIGHT in top-level directory.!! This tests the null copy function (returns flag false; thus the! attribute should not be propagated to a dup'ed communicator! This is much like the test in typeattr2f! program main use mpi integer errs, ierr integer (kind=MPI_ADDRESS_KIND) extrastate, valin, valout, val integer type1, type2 integer keyval logical flag!! The only difference between the MPI-2 and MPI-1 attribute caching! routines in Fortran is that the take an address-sized integer! instead of a simple integer. These still are not pointers,! so the values are still just integers. ! errs = 0 call mtest_init( ierr ) type1 = MPI_INTEGER! extrastate = 1001 call mpi_type_create_keyval( MPI_TYPE_NULL_COPY_FN, & & MPI_TYPE_NULL_DELETE_FN, keyval, & & extrastate, ierr ) flag = .true. call mpi_type_get_attr( type1, keyval, valout, flag, ierr ) if (flag) then errs = errs + 1 print *, ' get attr returned true when no attr set' endif! Test the null copy function valin = 5001 call mpi_type_set_attr( type1, keyval, valin, ierr ) call mpi_type_dup( type1, type2, ierr )! Because we set NULL_COPY_FN, the attribute should not ! appear on the dup'ed communicator flag = .false. call mpi_type_get_attr( type1, keyval, valout, flag, ierr ) if (valout .ne. 5001) then errs = errs + 1 print *, 'Unexpected output value in type ', valout endif flag = .true. call mpi_type_get_attr( type2, keyval, valout, flag, ierr ) if (flag) then errs = errs + 1 print *, ' Attribute incorrectly present on dup datatype' endif! Test the delete function call mpi_type_free( type2, ierr )!! Test the attr delete function call mpi_type_dup( type1, type2, ierr ) valin = 6001 extrastate = 1001 call mpi_type_set_attr( type2, keyval, valin, ierr ) call mpi_type_delete_attr( type2, keyval, ierr ) flag = .true. call mpi_type_get_attr( type2, keyval, valout, flag, ierr ) if (flag) then errs = errs + 1 print *, ' Delete_attr did not delete attribute' endif call mpi_type_free( type2, ierr )! ierr = -1 call mpi_type_free_keyval( keyval, ierr ) if (ierr .ne. MPI_SUCCESS) then errs = errs + 1 call mtestprinterror( ierr ) endif call mtest_finalize( errs ) call mpi_finalize( ierr ) end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -