[FREE PDF sample] Fortran 2018 with Parallel Programming 1st Edition Subrata Ray (Author) ebooks
[FREE PDF sample] Fortran 2018 with Parallel Programming 1st Edition Subrata Ray (Author) ebooks
com
https://textbookfull.com/product/fortran-2018-with-parallel-
programming-1st-edition-subrata-ray-author/
OR CLICK BUTTON
DOWNLOAD NOW
https://textbookfull.com/product/introduction-to-programming-with-
fortran-chivers/
textboxfull.com
https://textbookfull.com/product/introduction-to-programming-with-
fortran-ian-chivers/
textboxfull.com
https://textbookfull.com/product/modern-fortran-explained-
incorporating-fortran-2018-michael-metcalf/
textboxfull.com
https://textbookfull.com/product/modern-fortran-building-efficient-
parallel-applications-1st-edition-milan-curcic/
textboxfull.com
Modern Fortran Building efficient parallel applications
1st Edition Milan Curcic
https://textbookfull.com/product/modern-fortran-building-efficient-
parallel-applications-1st-edition-milan-curcic-2/
textboxfull.com
https://textbookfull.com/product/parallel-programming-with-co-arrays-
robert-w-numrich/
textboxfull.com
https://textbookfull.com/product/pro-tbb-c-parallel-programming-with-
threading-building-blocks-1st-edition-michael-voss/
textboxfull.com
https://textbookfull.com/product/parallel-programming-concepts-and-
practice-1st-edition-bertil-schmidt/
textboxfull.com
Fortran 2018 with
Parallel Programming
Fortran 2018 with
Parallel Programming
Subrata Ray
CRC Press
Taylor & Francis Group
6000 Broken Sound Parkway NW, Suite 300
Boca Raton, FL 33487-2742
This book contains information obtained from authentic and highly regarded sources. Reasonable efforts have been made to
publish reliable data and information, but the author and publisher cannot assume responsibility for the validity of all materials
or the consequences of their use. The authors and publishers have attempted to trace the copyright holders of all material
reproduced in this publication and apologize to copyright holders if permission to publish in this form has not been obtained.
If any copyright material has not been acknowledged please write and let us know so we may rectify in any future reprint.
Except as permitted under U.S. Copyright Law, no part of this book may be reprinted, reproduced, transmitted, or utilized
in any form by any electronic, mechanical, or other means, now known or hereafter invented, including photocopying,
microfilming, and recording, or in any information storage or retrieval system, without written permission from the publishers.
For permission to photocopy or use material electronically from this work, please access www.copyright.com (http://www.
copyright.com/) or contact the Copyright Clearance Center, Inc. (CCC), 222 Rosewood Drive, Danvers, MA 01923, 978-750-8400.
CCC is a not-for-profit organization that provides licenses and registration for a variety of users. For organizations that have
been granted a photocopy license by the CCC, a separate system of payment has been arranged.
Trademark Notice: Product or corporate names may be trademarks or registered trademarks, and are used only for
identification and explanation without intent to infringe.
and
1. Preliminaries ...........................................................................................................................1
1.1 Character Set .................................................................................................................. 2
1.2 Identifiers .......................................................................................................................3
1.3 Intrinsic Data Types ......................................................................................................4
1.4 Constants and Variables...............................................................................................4
1.5 Integer Constants .......................................................................................................... 4
1.6 Real Constants ...............................................................................................................5
1.7 Double Precision Constants.........................................................................................6
1.8 Complex Constants .......................................................................................................6
1.9 Double Precision Complex Constants ........................................................................ 7
1.10 Quadruple (Quad) Precision Constants ..................................................................... 7
1.11 Logical Constants ..........................................................................................................7
1.12 Character Constants .....................................................................................................7
1.13 Literal Constants ...........................................................................................................8
1.14 Variables .........................................................................................................................8
1.15 Variable Declarations....................................................................................................8
1.16 Meaning of a Declaration.............................................................................................9
1.17 Assignment Operator ................................................................................................. 10
1.18 Named Constants........................................................................................................ 10
1.19 Keywords ..................................................................................................................... 11
1.20 Lexical Tokens ............................................................................................................. 12
1.21 Delimiters ..................................................................................................................... 12
1.22 Source Form ................................................................................................................. 13
1.23 Free Form ..................................................................................................................... 13
1.24 Continuation of Character Strings............................................................................ 15
1.25 Structure of a Program ............................................................................................... 16
1.26 IMPLICIT NONE......................................................................................................... 16
1.27 IMPLICIT ...................................................................................................................... 17
1.28 Rules of IMPLICIT ...................................................................................................... 18
1.29 Type Declarations ....................................................................................................... 18
1.30 Comments on IMPLICIT Statement ......................................................................... 19
1.31 PROGRAM Statement ................................................................................................ 19
1.32 END Statement ............................................................................................................ 19
1.33 Initialization................................................................................................................. 20
1.34 Number System ........................................................................................................... 20
1.35 Binary Numbers .......................................................................................................... 21
1.36 Octal Numbers ............................................................................................................ 21
1.37 Hexadecimal Numbers .............................................................................................. 21
1.38 Initialization Using DATA Statement ...................................................................... 21
1.39 BOZ Numbers ..............................................................................................................22
vii
viii Contents
22. Parallel Programming Using Message Passing Interface (MPI) .............................. 571
22.1 MPI Module ............................................................................................................. 571
22.2 Compilation ............................................................................................................. 571
22.3 Error Parameter of MPI Routines ......................................................................... 572
22.4 MPI Version ............................................................................................................. 572
22.5 MPI_INIT ................................................................................................................. 573
22.6 MPI_INITIALIZED ................................................................................................. 573
22.7 MPI_FINALIZE ....................................................................................................... 573
22.8 MPI Handles ............................................................................................................ 574
22.9 About This Chapter ................................................................................................ 574
22.10 Structure of a MPI Program .................................................................................. 574
22.11 MPI_COMM_RANK .............................................................................................. 575
22.12 MPI_COMM_SIZE .................................................................................................. 575
22.13 Use of Rank in Controlling the Flow of the MPI Program ............................... 576
22.14 MPI_BARRIER ........................................................................................................ 576
22.15 Basic MPI Datatype in Fortran.............................................................................. 577
22.16 Point-to-Point Communication ............................................................................. 577
22.17 Communication Modes.......................................................................................... 577
22.18 Message Sent and Received ................................................................................... 578
22.19 MPI_SEND and MPI_RECV ................................................................................. 578
22.20 MPI_SSEND............................................................................................................. 581
22.21 MPI_BSEND ............................................................................................................ 581
22.22 MPI_RSEND ............................................................................................................ 582
22.23 Deadlock .................................................................................................................. 582
22.24 Non-blocking Send and Receive ........................................................................... 583
22.25 Send Function-Naming Conventions in Blocking and Non-blocking
Forms ................................................................................................................... 585
22.26 MPI_ANY_TAG and MPI_ANY_SOURCE ......................................................... 585
22.27 REDUCTION ........................................................................................................... 586
22.28 MPI_SCAN .............................................................................................................. 592
22.29 MPI_ALLREDUCE ................................................................................................. 593
22.30 MPI_REDUCE_SCATTER_BLOCK ..................................................................... 595
22.31 MPI_REDUCE_SCATTER ..................................................................................... 596
22.32 MPI_BROADCAST ................................................................................................. 597
22.33 MPI_GATHER ......................................................................................................... 598
22.34 MPI_ALLGATHER ................................................................................................. 599
22.35 MPI_SCATTER ........................................................................................................600
22.36 MPI_SCATTERV ..................................................................................................... 601
22.37 MPI_ALLTOALL ..................................................................................................... 603
Contents xxi
Since the early days of machine computing, there has been a constant demand for larger
and faster machines. The two terms essentially mean machines with larger memory and
more speed than that of the existing available machines. During the past 70 years, there
have been dramatic changes in the fields of computer hardware and software—from
vacuum tubes to VLSI (very large scale integration) and from no operating system to very
sophisticated, time-sharing operating systems. There are three obstacles that computer
designers face while aiming to increase the speed of the computer. First, the density of the
active components within a chip cannot be increased arbitrarily. Second, with the increase
of the density of the active components within VLSI chips, heat dissipation becomes a
severe problem. Third, the speed of a signal cannot exceed the speed of light according
to the special theory of relativity proposed by Einstein. Thus, a different approach to the
problem has been thought of.
Instead of having a single processor, if several processors (each may not be very fast and
can be inexpensive) participate in parallel for computation, the speed of calculation can
be increased considerably, and in fact, using inexpensive processors controlled by special
software and hardware, the speed of a supercomputer can be achieved if hundreds of
processors work together in parallel.
This book contains an introduction to parallel computing using Fortran. Fortran supports
three types of parallel modes of computation: Coarray, OpenMP and Message Passing
Interface (MPI). All three modes of parallel computation have been discussed in this book.
In addition, the first part of the book contains a discussion on the current standard of
Fortran, namely, Fortran 2018.
The first part of the book can be used to learn the modern Fortran language even if
the reader has not yet been exposed to the earlier versions of Fortran. The book should
be read sequentially from the beginning. However, a reader who is conversant with the
earlier versions of Fortran may skip the introduction to Fortran and go directly to the new
features of the language.
As Fortran is mainly used to solve problems related to science and engineering, standard
numerical methods have been used as a vehicle to illustrate the application of the language.
However, knowledge beyond the level of elementary calculus is not required to understand
the numerical examples given in the book. The emphasis of the book is on programming
language, not on sophisticated numerical methods. The programming examples given in
the book are simple, and to keep the code readable, the codes are not always optimized. It is
expected that a reader, after proper understanding of the language, would be able to write
much more efficient codes than the codes given in the book.
Programming tips and style have been introduced at appropriate places. They serve
simply as guidelines. It is well known that every experienced programmer has his or her
own programming style.
To keep the size of the book reasonable, all available features of Fortran 2018 have
not been discussed. Moreover, only the essential components of Coarray, OpenMP and
MPI, which are required to write reasonably useful programs, have been discussed. It is
hoped that readers, after going through this book, will refer to relevant manuals and be
able to write parallel programs in Fortran to solve their numerical problems.
xxiii
xxiv Preface
The book is full of examples. Most of the examples have been tested with Intel Cor-
poration’s Fortran compiler, ifort, version 19.3, GCC gfortran version 7.3.0 and the Fortran
compiler version 6.2 of Numerical Algorithm Group (NAG). The Fortran part is based on
the draft Fortran 2018 report published on July 6, 2017. At the time of writing, these com-
pilers do not support all the proposed features of Fortran 2018, but Intel, Free Software
Foundation, Inc., and NAG will add further support for these features over time.
Subrata Ray
Acknowledgments
The author wishes to record his deep sense of gratitude to his colleagues, friends and asso-
ciates who helped him to prepare this manuscript during the various phases of this work.
The Numerical Algorithms Group Ltd., Oxford, UK, provided the author with a free
license to use their Fortran compiler. Intel Corporation allowed the author to use the trial
version of their Fortran compiler ifort. The free GCC gfortran compiler was also used.
National Council of Education, Bengal, and Institute of Business Management, NCE,
Bengal, allowed the use of their computer laboratory during the preparation of this book.
Finally, the author wishes to thank his family for their encouragement during the prepa-
ration of this manuscript.
xxv
Author
xxvii
Another Random Scribd Document
with Unrelated Content
The Project Gutenberg eBook of Junge Triebe:
Roman
This ebook is for the use of anyone anywhere in the United States
and most other parts of the world at no cost and with almost no
restrictions whatsoever. You may copy it, give it away or re-use it
under the terms of the Project Gutenberg License included with this
ebook or online at www.gutenberg.org. If you are not located in the
United States, you will have to check the laws of the country where
you are located before using this eBook.
Language: German
Roman
von
Ernst W. Freißler
Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.
textbookfull.com