[FLASH-USERS] LaserSlab compilation

Aodhan McIlvenny amcilvenny01 at qub.ac.uk
Sat Jan 4 16:39:24 EST 2020


Hi,

Sorry for the naivity of my message, I am only beginning to use FLASH. I 
am having an issue getting the laserslab example to run when running 
make. While the example appears to setup correctly, following up with 
make produces the attached error. I'd really appreciate if someone could 
point out my error. I also am attaching the Makefile I am using.

All the best,

Aodhan



-------------- next part --------------
# FLASH makefile definitions for x86-64 Linux (GNU compilers)
#----------------------------------------------------------------------------
# Set the HDF5/MPI library paths -- these need to be updated for your system
#----------------------------------------------------------------------------

MPI_PATH   = /opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5
HDF4_PATH  =
HDF5_PATH  = /opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5
HYPRE_PATH = /users/40082858/hypre/src

ZLIB_PATH  =

PAPI_PATH  =
PAPI_FLAGS =

NCMPI_PATH = /usr/local/netcdf
MPE_PATH   =

#----------------------------------------------------------------------------
# Compiler and linker commands
#
#   Use the MPICH wrappers around the compilers -- these will automatically
#   load the proper libraries and include files.  Version of MPICH prior
#   to 1.2.2 (?) do not recognize .F90 as a valid Fortran file extension.
#   You need to edit mpif90 and add .F90 to the test of filename extensions,
#   or upgrade your MPICH.
#----------------------------------------------------------------------------

FCOMP   = ${MPI_PATH}/bin/mpif90
CCOMP   = ${MPI_PATH}/bin/mpicc
CPPCOMP = ${MPI_PATH}/bin/mpicxx
LINK    = ${MPI_PATH}/bin/mpif90

# pre-processor flag
PP      = -D

#----------------------------------------------------------------------------
# Compilation flags
#
#  Three sets of compilation/linking flags are defined: one for optimized
#  code, one for testing, and one for debugging.  The default is to use the
#  _OPT version.  Specifying -debug to setup will pick the _DEBUG version,
#  these should enable bounds checking.  Specifying _TEST is used for
#  flash_test, and is set for quick code generation, and (sometimes)
#  profiling.  The Makefile generated by setup will assign the generic token
#  (ex. FFLAGS) to the proper set of flags (ex. FFLAGS_OPT).
#----------------------------------------------------------------------------

OPENMP = -fopenmp

FFLAGS_OPT = -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 \
-Wuninitialized

#I explictly add -O0 because I found that compiling source files without
#an optimization flag generates the same object code as compiling source
#files with -O2.  The -O0 is required so that gdb no longer shows
#"<value optimized out>" for certain function arguments.

FFLAGS_DEBUG = -ggdb -c -O0 -fdefault-real-8 -fdefault-double-8 \
-pedantic -Wall -Waliasing \
-Wsurprising -Wconversion -Wunderflow \
-ffpe-trap=invalid,zero,overflow -fbounds-check \
-fimplicit-none -fstack-protector-all

FFLAGS_TEST = -ggdb -c -O0 -fdefault-real-8 -fdefault-double-8

FFLAGS_HYPRE = -I${HYPRE_PATH}


F90FLAGS =


#The macro _FORTIFY_SOURCE adds some lightweight checks for buffer
#overflows at both compile time and run time (only active at -O1 or higher)
#http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html
CFLAGS_OPT = -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2

CFLAGS_DEBUG = -ggdb -c -O0 -Wno-div-by-zero -Wundef \
-Wconversion -Wstrict-prototypes -Wunreachable-code \
-pedantic -Wall -Winit-self -ftree-vrp -Wfloat-equal \
-Wunsafe-loop-optimizations -Wpadded -fstack-protector-all

CFLAGS_TEST = -ggdb -O0 -c

CFLAGS_HYPRE = -I${HYPRE_PATH}/include

# if we are using HDF5, we need to specify the path to the include files
CFLAGS_HDF5 = -I${HDF5_PATH}/include -DH5_USE_16_API
CFLAGS_NCMPI = -I${NCMPI_PATH}/include

#----------------------------------------------------------------------------
# Linker flags
#
#  There is a seperate version of the linker flags for each of the _OPT,
#  _DEBUG, and _TEST cases.
#----------------------------------------------------------------------------

LFLAGS_OPT   = -ggdb -o
LFLAGS_DEBUG = -ggdb -O0 -o
LFLAGS_TEST  = -ggdb -O0 -o


#----------------------------------------------------------------------------
# Library specific linking
#
#  If a FLASH module has a 'LIBRARY xxx' line in its Config file, we need to
#  create a macro in this Makefile.h for LIB_xxx, which will be added to the
#  link line when FLASH is built.  This allows us to switch between different
#  (incompatible) libraries.  We also create a _OPT, _DEBUG, and _TEST
#  library macro to add any performance-minded libraries (like fast math),
#  depending on how FLASH was setup.
#----------------------------------------------------------------------------

LIB_OPT   =
LIB_DEBUG =
LIB_TEST  =

LIB_HDF4  =
LIB_HDF5  = -L ${HDF5_PATH}/lib -lhdf5 -lz

LIB_PAPI  =
LIB_MATH  =

LIB_MPI   =
LIB_NCMPI = -L ${NCMPI_PATH}/lib -lpnetcdf
LIB_MPE   =

LIB_HYPRE = -L${HYPRE_PATH}/lib -lHYPRE

# Uncomment the following line to use electic fence memory debugger.
# export EF_ALLOW_MALLOC_0=1
#CONFIG_LIB = -L/usr/lib64 -lefence

#----------------------------------------------------------------------------
# Additional machine-dependent object files
#
#  Add any machine specific files here -- they will be compiled and linked
#  when FLASH is built.
#----------------------------------------------------------------------------

MACHOBJ =

#----------------------------------------------------------------------------
# Additional commands
#----------------------------------------------------------------------------

MV = mv -f
AR = ar -r
RM = rm -f
CD = cd
RL = ranlib
ECHO = echo


#----------------------------------------------------------------------------
# Fake existence of iso_c_bindings module to prevent unnecessary recompilations.
#---------------------------------------------------------------------------- 
ifeq ($(FLASHBINARY),true)
iso_c_binding.mod :
	touch $@
endif
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Screenshot 2020-01-04 at 21.32.21.png
Type: image/png
Size: 424031 bytes
Desc: not available
URL: <http://flash.rochester.edu/pipermail/flash-users/attachments/20200104/80abf496/attachment.png>
-------------- next part --------------
(base) [40082858 at login1(kelvin2) FLASH4.6.2]$ ./setup -auto LaserSlab -2d +cylindrical -nxb=16 -nyb=16 +hdf5typeio species=cham,targ +mtmmmt +laser +uhd3t +mgd mgd_meshgroups=6 -parfile=example.par
/users/40082858/FLASH4.6.2/bin/setup.py:16: DeprecationWarning: sys.getcheckinterval() and sys.setcheckinterval() are deprecated.  Use sys.setswitchinterval() instead.
  sys.setcheckinterval(10000) # this is not threaded application
Processing Shortcut file: /users/40082858/FLASH4.6.2/bin/setup_shortcuts.txt
checking for needed files and directories
    checking sites Aliases file
    site directory for site login1.pri.kelvin2.alces.network not found;
    using prototype Linux
generating default Units file
/users/40082858/FLASH4.6.2/bin/unitCfg.py:108: FutureWarning: Possible nested set at position 81
  myClass.regexps[keyword] = re.compile(regexp)
/users/40082858/FLASH4.6.2/bin/unitCfg.py:114: FutureWarning: Possible nested set at position 42
  myClass.regexps['pstring']=re.compile(r'PARAMETER\s+(\w+)\s+'\
    Driver/DriverMain/Unsplit
    Driver/localAPI
    Grid/GridAllocatableScratches
    Grid/GridBoundaryConditions
    Grid/GridMain/paramesh/interpolation/Paramesh4/prolong
    Grid/GridMain/paramesh/interpolation/prolong
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/PM4_package/headers
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/PM4_package/mpi_source
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/PM4_package/source
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/PM4_package/utilities/multigrid
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/flash_avoid_orrery
    Grid/GridParticles/GridParticlesMove/Sieve/BlockMatch
    Grid/GridParticles/GridParticlesMove/paramesh
    Grid/GridSolvers/HYPRE/paramesh
    Grid/localAPI
    IO/IOMain/hdf5/parallel/PM_argonne
    IO/IOTypes/hdf5
    IO/localAPI
    Multispecies/MultispeciesMain
    PhysicalConstants/PhysicalConstantsMain
    RuntimeParameters/RuntimeParametersMain
    Simulation/SimulationMain/LaserSlab
    flashUtilities/contiguousConversion
    flashUtilities/general
    flashUtilities/interpolation/oneDim
    flashUtilities/nameValueLL
    flashUtilities/rng
    flashUtilities/sorting/quicksort
    flashUtilities/system/memoryUsage/legacy
    monitors/Logfile/LogfileMain
    monitors/Timers/TimersMain/MPINative
    numericalTools/Roots/RootsMain
    physics/Diffuse/DiffuseMain/Unsplit
    physics/Diffuse/localAPI
    physics/Eos/EosMain/Tabulated/Hdf5TableRead
    physics/Eos/EosMain/multiTemp/Gamma/Ye
    physics/Eos/EosMain/multiTemp/Multitype
    physics/Eos/localAPI
    physics/Hydro/HydroMain/unsplit/Hydro_Unsplit
    physics/Hydro/HydroMain/unsplit/multiTemp
    physics/Hydro/localAPI
    physics/RadTrans/RadTransMain/MGD
    physics/RadTrans/localAPI
    physics/materialProperties/Conductivity/ConductivityMain/SpitzerHighZ
    physics/materialProperties/Conductivity/localAPI
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Constant
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Constcm2g
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Integrate
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/LowTemp
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Numerics
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Tabulated
    physics/materialProperties/Opacity/localAPI
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserBeams
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserComm/Sync
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserIO
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserPulses
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserRayTrace/CellAverage
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserRaysCreate
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserUtilities
    physics/sourceTerms/EnergyDeposition/localAPI
    physics/sourceTerms/Heatexchange/HeatexchangeMain/Spitzer
scanning /users/40082858/FLASH4.6.2/object/Units file for included units
    Driver/DriverMain/Unsplit
    Driver/localAPI
    Grid/GridAllocatableScratches
    Grid/GridBoundaryConditions
    Grid/GridMain/paramesh/interpolation/Paramesh4/prolong
    Grid/GridMain/paramesh/interpolation/prolong
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/PM4_package/headers
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/PM4_package/mpi_source
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/PM4_package/source
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/PM4_package/utilities/multigrid
    Grid/GridMain/paramesh/paramesh4/Paramesh4dev/flash_avoid_orrery
    Grid/GridParticles/GridParticlesMove/Sieve/BlockMatch
    Grid/GridParticles/GridParticlesMove/paramesh
    Grid/GridSolvers/HYPRE/paramesh
    Grid/localAPI
    IO/IOMain/hdf5/parallel/PM_argonne
    IO/IOTypes/hdf5
    IO/localAPI
    Multispecies/MultispeciesMain
    PhysicalConstants/PhysicalConstantsMain
    RuntimeParameters/RuntimeParametersMain
    Simulation/SimulationMain/LaserSlab
    flashUtilities/contiguousConversion
    flashUtilities/general
    flashUtilities/interpolation/oneDim
    flashUtilities/nameValueLL
    flashUtilities/rng
    flashUtilities/sorting/quicksort
    flashUtilities/system/memoryUsage/legacy
    monitors/Logfile/LogfileMain
    monitors/Timers/TimersMain/MPINative
    numericalTools/Roots/RootsMain
    physics/Diffuse/DiffuseMain/Unsplit
    physics/Diffuse/localAPI
    physics/Eos/EosMain/Tabulated/Hdf5TableRead
    physics/Eos/EosMain/multiTemp/Gamma/Ye
    physics/Eos/EosMain/multiTemp/Multitype
    physics/Eos/localAPI
    physics/Hydro/HydroMain/unsplit/Hydro_Unsplit
    physics/Hydro/HydroMain/unsplit/multiTemp
    physics/Hydro/localAPI
    physics/RadTrans/RadTransMain/MGD
    physics/RadTrans/localAPI
    physics/materialProperties/Conductivity/ConductivityMain/SpitzerHighZ
    physics/materialProperties/Conductivity/localAPI
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Constant
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Constcm2g
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Integrate
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/LowTemp
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Numerics
    physics/materialProperties/Opacity/OpacityMain/Multispecies/method/Tabulated
    physics/materialProperties/Opacity/localAPI
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserBeams
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserComm/Sync
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserIO
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserPulses
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserRayTrace/CellAverage
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserRaysCreate
    physics/sourceTerms/EnergyDeposition/EnergyDepositionMain/Laser/LaserUtilities
    physics/sourceTerms/EnergyDeposition/localAPI
    physics/sourceTerms/Heatexchange/HeatexchangeMain/Spitzer

IGNORED SUGGESTIONS
Grid/GridParticles/GridParticlesMove suggested one of the following units as
well:
    IO/IOParticles

Computing default values for options not specified on command line
Using Makefile.h: /users/40082858/FLASH4.6.2/sites/Prototypes/Linux/Makefile.h
generating Makefile
Copying data files: 3 copied
Copied example.par as flash.par
SUCCESS
(base) [40082858 at login1(kelvin2) FLASH4.6.2]$ cd FLASH4.6.2/
-bash: cd: FLASH4.6.2/: No such file or directory
(base) [40082858 at login1(kelvin2) FLASH4.6.2]$ cd object
(base) [40082858 at login1(kelvin2) object]$ make -j4
Calculating dependencies
./setup_depends.py --generateINTERMEDIATElines -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 *.f *.f90 *.F90 *.F 
./setup_addcdepends.py -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 *.c
rm -f reorder.sh
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bcInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 paramesh_dimensions.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_interfaceTypeDecl.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 paramesh_interfaces.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 paramesh_mpi_interfaces.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 paramesh_comm_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 constants.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 io.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 tree.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RuntimeParameters_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Burn_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 cond_commonData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PhysicalConstants_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_nucInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 cond_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Conductivity_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cool_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Deleptonize_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Diffuse_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Timers_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 diff_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 MassDiffusivity_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Viscosity_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 MagneticResistivity_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Opacity_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 dr_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IO_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Hydro_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Stir_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heat_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heatexchange_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 SolidMechanics_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IncompNS_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ProtonImaging_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ProtonEmission_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ThomsonScattering_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 XrayImaging_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Profiler_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 NSE_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PlasmaState_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ImBound_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Polytrope_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Turb_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 EnergyDeposition_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RayTrace_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Roots_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RungeKutta_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Ionize_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ut_sysMemData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ut_randomInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 EnergyDeposition_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_slopeLimiters.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_commInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_vecData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_helmConstData.F90
ed_slopeLimiters.F90: In function ‘ed_firstderiv’:
ed_slopeLimiters.F90:92:0: warning: ‘__result_ed_firstderiv’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   end function ed_firstDeriv
 ^
ed_slopeLimiters.F90:66:0: note: ‘__result_ed_firstderiv’ was declared here
   function ed_firstDeriv (Umm,Um,U0,Up,Upp,order,upwindDir)
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_data.F90
touch iso_c_binding.mod
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_mgammaData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_mtInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_idealGammaData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_localInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 physicaldata.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_flashHook_interfaces.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hgInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bcData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_mgInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bicgInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bhInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_GCScratchData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreLocalInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_ptInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_sbInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ut_qsortInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_ptData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_pfftInterfaceTypeDecl.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_pmFlashHookData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ut_sortInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_ptSieveInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heatexchange_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Hydro_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 hy_uhd_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 hy_uhd_MultiTempData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 hy_uhd_slopeLimiters.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 io_intfTypesModule.F90
test -f io_flash.h && touch io_flash.h
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 io_typeData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_data.F90
hy_uhd_slopeLimiters.F90: In function ‘firstderiv’:
hy_uhd_slopeLimiters.F90:113:0: warning: ‘__result_firstderiv’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   end function firstDeriv
 ^
hy_uhd_slopeLimiters.F90:87:0: note: ‘__result_firstderiv’ was declared here
   ELEMENTAL function firstDeriv(Umm,Um,U0,Up,Upp,order,upwindDir)
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Opacity_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 op_tabulatedData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 op_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 op_numericsData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 op_lowTempData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 op_integrateData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 op_constantData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 op_constcm2gData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 pc_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PhysicalConstants_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 rt_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 rt_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Roots_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Timers_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ut_interpolationInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Burn.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Burn_computeAbarZbar.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Burn_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Burn_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Burn_guardCellMaskHook.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Burn_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Burn_nseAtDens.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Burn_nseAtPres.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Conductivity_aniso.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Conductivity_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Conductivity_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cool.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cool_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cool_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cool_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cool_unitTest.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_cdmPowerSpectrum.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_getOldRedshift.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_getParams.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_getRedshift.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_massToLength.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_redshiftHydro.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_redshiftToTime.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_sendOutputData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Cosmology_solveFriedmannEqn.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Debugger_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Debugger_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Deleptonize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Deleptonize_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Deleptonize_getBounce.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Diffuse.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Diffuse_advance1D.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Diffuse_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Diffuse_setContextInfo.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Diffuse_species.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Diffuse_therm.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Diffuse_visc.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpicc -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_abortFlashC.c
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_diagnostics.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_driftSetSrcLoc.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_driftUnk.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_getDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_getElapsedWCTime.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_getNStep.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_getSimTime.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_getTimeStamp.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_initMaterialProperties.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_initNumericalTools.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_initParallel.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_mpiThreadSupport.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_putTimeStamp.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_sendOutputData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_sourceTerms.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_superTimeStep.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 EnergyDeposition_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_getParameters.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_nucDetectBounce.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_nucOneZone.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_computeAbarZbar.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_getProfile.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_getWidth.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_laminarSpeed.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_rhJump.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_rhJumpReactive.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flame_step.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_accelAtCoords.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_accelListOfBlocks.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_accelOneBlock.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_accelOneRow.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhAccBotNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhAccNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhBTInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhCheckAccuracy.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhEwaldAcc.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhEwaldAccV42.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhEwaldPot.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhEwaldPotV42.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhFillBotNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhFinalizeBlock.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhFinalizeIter.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhGetNodeStruct.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhInitFieldVar.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhMAC.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhNodeContrib.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhNormalizeNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhPartErr.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhPostprocNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhSelfContrib.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhStartBlock.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_bhTreeWalkEnd.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_potentialListOfBlocks.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_advanceMultiDiffusion.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_ascReleaseBlkPtr.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_bcApplyToRegionMixedGds.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_bcApplyToRegionSpecialized.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_computeUserVars.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 workspace.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_conserveFluxes.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_conserveToPrimitive.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_dfsvAddToSystem.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_dfsvBeginSystem.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_dfsvCompleteSystem.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_dfsvCreateSystem.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_dump.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_formatNonRep.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBlkCenterCoords.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBlkNeighLevels.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBlkPhysicalSize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBlkRefineLevel.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBlkType.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBoundboxCentroids.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getDeltas.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getDomainBC.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getDomainBoundBox.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getFluxData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getGeometry.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getGlobalIndexLimits.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getLocalNumBlks.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getMinCellSize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getMinCellSizes.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getVarNonRep.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_guardCellMaskHook.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_limitAbundance.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_mapMeshToParticles.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_mapParticlesToMesh.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_markBlkDerefine.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_markBlkRefine.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_markRefineSpecialized.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_notifySolnDataUpdate.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_outsideBoundBox.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_parseNonRep.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_pfft.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_pfftFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_pfftGetIndexLimits.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_pfftInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_pfftMapFromOutput.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_pfftMapToInput.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_primitiveToConserve.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_putFluxData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_putLocalNumBlks.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_receiveInputData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_renormMassScalars.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_restrictByLevels.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_sbBroadcastParticles.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_sbSelectMaster.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_setInterpValsGcell.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_solidBodyUnitTest.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_subcellGeometry.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_unitTest.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_updateSolidBodyForces.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heat.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heat_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heat_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heat_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heatexchange_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Hydro.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Hydro_detectShock.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Hydro_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Hydro_gravPotIsAlreadyUpdated.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Hydro_sendOutputData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IO_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IO_readParticles.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IO_readUserArray.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IO_writeParticles.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IO_writeSingleCells.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IO_writeUserArray.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ImBound.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ImBound_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ImBound_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ImBound_setData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IncompNS.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IncompNS_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IncompNS_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IncompNS_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IncompNS_sendOutputData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IncompNS_stats.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IncompNS_statsIOExport.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 IncompNS_velomg2center.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic1DF.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic1DFd1.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic1DFd1d2.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic1Dcoeffs.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic1DmonoDerv.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic2DF.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic2DFd1.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic2DFd1d2.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic2Dcoeffs.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic2DmonoDerv.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic3DF.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic3DFd1.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic3DFd1d2.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic3Dcoeffs.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_cubic3DmonoDerv.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Interpolate_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Ionize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Ionize_equil.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Ionize_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Ionize_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_close.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_getDateTimeStr.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 MagneticResistivity.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 MagneticResistivity_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 MagneticResistivity_fullState.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 MagneticResistivity_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 MassDiffusivity.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 MassDiffusivity_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 MassDiffusivity_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_list.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_unitTest.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 NSE_finalAtDens.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 NSE_finalAtPres.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 NSE_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 NSE_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Opacity_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Opacity_unitTest.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Paramesh_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_accumCount.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_addNew.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_advance.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_clean.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_dump.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_getCountPerBlk.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_getGlobalNum.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_getLocalNum.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_initData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_initForces.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_initPositions.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_longRangeForce.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_manageLost.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_mapFromMesh.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_mapToMeshOneBlk.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_putLocalNum.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sendOutputData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_shortRangeForce.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sinkAccelGasOnSinksAndSinksOnGas.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sinkAdvanceParticles.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sinkComputeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sinkCreateAccrete.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sinkInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sinkMarkRefineDerefine.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sinkMoveParticles.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sinkSortParticles.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_sinkSyncWithParticles.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_unitTest.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_updateAttributes.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_updateGridVar.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_updateRefinement.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PhysicalConstants_get.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PhysicalConstants_list.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PhysicalConstants_listUnits.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_globalCheckStatus.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_globalCheckStructure.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_localActivate.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_localCreate.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_localDeactivate.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_localDestroy.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_localFlush.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_localGetItems.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_localPrintSnapshot.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_localProgress.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Pipeline_localSendItem.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PlasmaState_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PlasmaState_getComposition.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PlasmaState_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Polytrope.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Polytrope_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Polytrope_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PrimordialChemistry.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PrimordialChemistry_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PrimordialChemistry_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PrimordialChemistry_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PrimordialChemistry_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Profiler_getSummary.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Profiler_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Profiler_start.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Profiler_stop.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ProtonEmission.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ProtonEmission_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ProtonEmission_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ProtonImaging.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ProtonImaging_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ProtonImaging_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_getDbgContext.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_mgdGetBound.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_mgdSetBc.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_mgdSetBound.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_planckInt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RayTrace.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RayTrace_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RayTrace_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Roots_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Roots_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Roots_x2Polynomial.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Roots_x3Polynomial.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Roots_x4Polynomial.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RungeKutta_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RungeKutta_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RungeKutta_step.F90
Roots_x3Polynomial.F90: In function ‘roots_x3polynomial’:
Roots_x3Polynomial.F90:516:0: warning: ‘xshift’ may be used uninitialized in this function [-Wmaybe-uninitialized]
       x = x - xShift                                    ! unshift root
 ^
Roots_x3Polynomial.F90:469:0: warning: ‘c’ may be used uninitialized in this function [-Wmaybe-uninitialized]
          z = z * x + c
 ^
Roots_x3Polynomial.F90:467:0: warning: ‘b’ may be used uninitialized in this function [-Wmaybe-uninitialized]
          z = z * x + b
 ^
Roots_x3Polynomial.F90:465:0: warning: ‘a’ may be used uninitialized in this function [-Wmaybe-uninitialized]
          z = x + a
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RungeKutta_stepConfined.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RungeKutta_stepSizeEstimate.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RuntimeParameters_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RuntimeParameters_mapStrToInt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_adjustEvolution.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_computeAnalytical.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_defineDomain.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_freeUserArrays.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_getRenormGroup.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_getVarnameType.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_guardCellMaskHook.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_initRestart.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_initSpecies.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_mapParticlesVar.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_sendOutputData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 SolidMechanics.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 SolidMechanics_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 SolidMechanics_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 SolidMechanics_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Stir.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Stir_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Stir_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Stir_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ThomsonScattering.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ThomsonScattering_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ThomsonScattering_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Timers_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Timers_reset.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Timers_stop.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhAccBotNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhAccNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhBTInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhCheckAccuracy.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhFillBotNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhFinalizeBlock.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhFinalizeIter.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhGetNodeStruct.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhInitFieldVar.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhMAC.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhNodeContrib.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhNormalizeNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhPartErr.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhPostprocNode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhSelfContrib.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhStartBlock.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_bhTreeWalkEnd.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_potentialListOfBlocks.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Turb_calc.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Turb_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Turb_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Viscosity.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Viscosity_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Viscosity_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 XrayImaging.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 XrayImaging_finalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 XrayImaging_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 mpi_morton.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 timings.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_gen_work_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_genorder.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 prolong_arrays.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_work_genorder.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_work_mg.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_copy_soln.F90
amr_1blk_copy_soln.F90:123.28:

          Do ivar=1,nfacevar
                            1
Warning: DO loop at (1) will be executed zero times
amr_1blk_copy_soln.F90:131.28:

          Do ivar=1,nfacevar
                            1
Warning: DO loop at (1) will be executed zero times
amr_1blk_copy_soln.F90:140.28:

          Do ivar=1,nfacevar
                            1
Warning: DO loop at (1) will be executed zero times
amr_1blk_copy_soln.F90:202.28:

          Do ivar=1,nfacevar
                            1
Warning: DO loop at (1) will be executed zero times
amr_1blk_copy_soln.F90:208.28:

          Do ivar=1,nfacevar
                            1
Warning: DO loop at (1) will be executed zero times
amr_1blk_copy_soln.F90:215.28:

          Do ivar=1,nfacevar
                            1
Warning: DO loop at (1) will be executed zero times
amr_1blk_copy_soln.F90:288.28:

          Do ivar=1,nfacevar
                            1
Warning: DO loop at (1) will be executed zero times
amr_1blk_copy_soln.F90:297.28:

          Do ivar=1,nfacevar
                            1
Warning: DO loop at (1) will be executed zero times
amr_1blk_copy_soln.F90:308.28:

          Do ivar=1,nfacevar
                            1
Warning: DO loop at (1) will be executed zero times
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_ec_cp_remote.F90
amr_1blk_copy_soln.F90: In function ‘amr_1blk_copy_soln’:
amr_1blk_copy_soln.F90:328:0: warning: ‘time1’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                                 + mpi_wtime() - time1
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_ec_prol_gen_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_ec_prol_genorder.F90
amr_1blk_ec_prol_gen_fun.F90: In function ‘amr_1blk_ec_prol_gen_fun’:
amr_1blk_ec_prol_gen_fun.F90:146:0: warning: ‘time1’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                                 + mpi_wtime() - time1
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_ec_prol_linear.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_ec_prol_user.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_fc_clean_divb.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_fc_cp_remote.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_fc_prol_dbz.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_fc_prol_gen_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_fc_prol_genorder.F90
amr_1blk_fc_prol_gen_fun.F90: In function ‘amr_1blk_fc_prol_gen_fun’:
amr_1blk_fc_prol_gen_fun.F90:176:0: warning: ‘time1’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                                 + mpi_wtime() - time1
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_fc_prol_inject.F90
amr_1blk_fc_cp_remote.F90: In function ‘amr_1blk_fc_cp_remote’:
amr_1blk_fc_cp_remote.F90:149:0: warning: ‘recvyf.dim[3].stride’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                            recvyf(:,:,:,:),                            & 
 ^
amr_1blk_fc_cp_remote.F90:335:0: warning: ‘recvyf.offset’ may be used uninitialized in this function [-Wmaybe-uninitialized]
         recvyf(:,:,1,:) = gt_facevary(:,:,1,:,remote_block)
 ^
amr_1blk_fc_cp_remote.F90:148:0: warning: ‘recvxf.dim[3].stride’ may be used uninitialized in this function [-Wmaybe-uninitialized]
       Real, Allocatable :: recvxf(:,:,:,:),                            & 
 ^
amr_1blk_fc_cp_remote.F90:148:0: warning: ‘recvxf.dim[2].stride’ may be used uninitialized in this function [-Wmaybe-uninitialized]
amr_1blk_fc_cp_remote.F90:148:0: warning: ‘recvxf.offset’ may be used uninitialized in this function [-Wmaybe-uninitialized]
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_fc_prol_linear.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_fc_prol_user.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_guardcell_reset.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_guardcell_srl.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_nc_cp_remote.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_nc_prol_gen_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_nc_prol_genorder.F90
amr_1blk_guardcell_srl.F90: In function ‘amr_1blk_guardcell_srl’:
amr_1blk_guardcell_srl.F90:514:0: warning: ‘time2’ may be used uninitialized in this function [-Wmaybe-uninitialized]
              timer_amr_1blk_cc_cp_remote(0)+ mpi_wtime() - time2
 ^
amr_1blk_guardcell_srl.F90:938:0: warning: ‘time1’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                                 + mpi_wtime() - time1
 ^
amr_1blk_nc_prol_gen_fun.F90: In function ‘amr_1blk_nc_prol_gen_fun’:
amr_1blk_nc_prol_gen_fun.F90:137:0: warning: ‘time1’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                                 + mpi_wtime() - time1
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_nc_prol_linear.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_nc_prol_user.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_save_soln.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_t_to_perm.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_to_perm.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_bcset_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_block_geometry.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_check_refine.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_close.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_compute_morton.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_get_new_nodetypes.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_initialize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_mg_common.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_mg_restrict.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_migrate_tree_data.F90
amr_initialize.F90:1031.24:

      Do i = 1, nfacevar
                        1
Warning: DO loop at (1) will be executed zero times
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_morton_order.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_morton_process.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_mpi_find_blk_in_buffer.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_perm_to_1blk.F90
amr_mpi_find_blk_in_buffer.F90: In function ‘amr_mpi_find_blk_in_buffer’:
amr_mpi_find_blk_in_buffer.F90:133:0: warning: ‘rem_pe’ may be used uninitialized in this function [-Wmaybe-uninitialized]
       If (rem_pe.ne.mype) Then
 ^
amr_mpi_find_blk_in_buffer.F90:208:0: warning: ‘iseg_no’ may be used uninitialized in this function [-Wmaybe-uninitialized]
         iaddress = mess_segment_loc(seg_no)
 ^
amr_perm_to_1blk.F90:184.30:

            Do ivar=1,nfacevar
                              1
Warning: DO loop at (1) will be executed zero times
amr_perm_to_1blk.F90:234.30:

            Do ivar=1,nfacevar
                              1
Warning: DO loop at (1) will be executed zero times
amr_perm_to_1blk.F90:284.30:

            Do ivar=1,nfacevar
                              1
Warning: DO loop at (1) will be executed zero times
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_prolong_cc_fun_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_prolong_face_fun_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_prolong_fun_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_q_sort.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_q_sort_real.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_reorder_grid.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_ec_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_ec_genorder.F90
amr_restrict_ec_genorder.F90: In function ‘amr_restrict_ec_genorder’:
amr_restrict_ec_genorder.F90:310:0: warning: ‘kw’ may be used uninitialized in this function [-Wmaybe-uninitialized]
            www = weight(order,kw,kkk)
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_ec_user.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_edge.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_fc_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_fc_genorder.F90
amr_initialize.F90: In function ‘amr_initialize’:
amr_initialize.F90:1132:0: warning: ‘time1’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                                  + mpi_wtime() - time1
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_fc_user.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_nc_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_nc_genorder.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_nc_user.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_red.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_unk_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_unk_genorder.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_unk_user.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_work_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_work_fun_recip.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_work_genorder.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_work_user.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_sort_by_work.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_sort_morton.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_sort_morton_reorder_grid.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_system_calls.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 clean_field.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 compress_fetch_list.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 concatStringWithInt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 cond_anisoInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 current_date_time.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 diff_applyPC.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 diff_computeAX.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 diff_computeFluxes.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 diff_computeILU.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 diff_computeblkAMat.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 diff_fbInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 diff_saFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpicc -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 dr_set_rlimits.c
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpicc -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 dr_sleep.c
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_CoulombFactor.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam2DGridSetupRegular.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam2DGridSetupStatistical.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridSetupRadial.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridSetupRecBeam.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridSetupSquare.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridSetupStatistical.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamsCheck.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamsInfo.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_checkReuseDepo.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_commFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_commHandleOffBlkRay.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_commIncrementDeadRays.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_commInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_commInitComm.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_commIsTransportDone.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_commProgressTransport.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpicc -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_comm_sort_particles.c
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_initializeBeams.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_initializeRays.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_inverseBremsstrahlungRate.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_laserIOCheckWrite.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_maxConfinement1DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_maxConfinement2DCyl3D.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_maxConfinement2DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_maxConfinement3DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_minConfinement1DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_minConfinement2DCyl3D.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_minConfinement2DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_minConfinement3DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_printMainData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_printPulsesData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_printRaysData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_raysBlockIDInfo.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_raytraceODEfunction1DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_raytraceODEfunction2DCyl3D.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_raytraceODEfunction2DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_raytraceODEfunction3DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_setupRays.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_time2FacesParabolicPath1D.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_updateRays.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_fillMapLookup.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_helmholtz.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_initGamma.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_initHelmholtz.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_initMgamma.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_initMtemp.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_initNuclear.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_initPhysData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_mgamma.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_mtemp.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_nuclear.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpicc -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabBrowsehdf5.c
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpicc -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabReadhdf5.c
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabulated.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_vecAlloc.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_vecDealloc.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 fill_old_loc.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 findWords.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 flash_unconvert_cc_hook.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_GCReleaseScratch.F90
findWords.F90: In function ‘findwords’:
findWords.F90:94:0: warning: ‘is_symbol’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   if (.not. (is_delimiter .or. is_symbol)) then
 ^
findWords.F90:55:0: note: ‘is_symbol’ was declared here
   logical              :: is_delimiter, is_symbol
 ^
findWords.F90:94:0: warning: ‘is_delimiter’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   if (.not. (is_delimiter .or. is_symbol)) then
 ^
findWords.F90:55:0: note: ‘is_delimiter’ was declared here
   logical              :: is_delimiter, is_symbol
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_GCTransferOneBlk.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_amr_dump_runtime_parameters.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bcFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bcHseInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bcInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bhFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bhInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bicgFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bicgInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bicgMapBcType.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_commSetUp.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_conserveToPrimitive.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_enforceMaxRefine.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_findWhichChild.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_findWhichChildren.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_freeCommRecvBuffer.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_getBlkHandle.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hgFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hgInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hgMapBcType.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hgPfftFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hgPfftInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hg_amr_1blk_bcset_work.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreCreateMatrixFcBAnisoCond.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpicc -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreF90CAdapters.c
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreGetFaceB.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreGetFaceBFcB.F90
gr_hypreF90CAdapters.c:9:30: fatal error: _hypre_parcsr_ls.h: No such file or directory
 #include "_hypre_parcsr_ls.h"
                              ^
compilation terminated.
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpicc -I/users/40082858/hypre/src -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypre_fortran_message.c
make: *** [gr_hypreF90CAdapters.o] Error 1
make: *** Waiting for unfinished jobs....
(base) [40082858 at login1(kelvin2) object]$ vi /users/40082858/FLASH4.6.2/sites/Prototypes/Linux/Makefile.h
(base) [40082858 at login1(kelvin2) object]$ make -j4
rm -f reorder.sh
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBlkIndexLimits.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_fc_prol_divpres.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Conductivity_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ut_sysMemInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamCrossSectionFunctions.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_c_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 local_tree.F90
ed_beamCrossSectionFunctions.F90: In function ‘ed_beamcrosssectionweight’:
ed_beamCrossSectionFunctions.F90:156:0: warning: ‘__result_ed_beamcrosssectionw’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   end function ed_beamCrossSectionWeight
 ^
ed_beamCrossSectionFunctions.F90:34:0: note: ‘__result_ed_beamcrosssectionw’ was declared here
   real function ed_beamCrossSectionWeight (functionType, &
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_solversData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_pfftInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 nameValueLL_data.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 io_c_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 io_c_type_interface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 io_ptInterface.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Conductivity.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Conductivity_fullState.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Deleptonize_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_abortFlash.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_checkMPIErrorCode.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_driftBlock.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_getComm.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_getMype.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_getNumProcs.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_logMemoryUsage.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Driver_setupParallelEnv.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_getAbarZbar.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_getData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_getTempData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_init.F90
Eos_getTempData.F90: In function ‘eos_gettempdata’:
Eos_getTempData.F90:178:0: warning: ‘temp3_map’ may be used uninitialized in this function [-Wmaybe-uninitialized]
               if (temp3_map /= NONEXISTENT .AND. tempRad .NE. temp) then
 ^
Eos_getTempData.F90:109:0: note: ‘temp3_map’ was declared here
   integer :: temp1_map,temp2_map,temp3_map
 ^
Eos_getTempData.F90:173:0: warning: ‘temp2_map’ may be used uninitialized in this function [-Wmaybe-uninitialized]
               if (temp2_map /= NONEXISTENT .AND. tempEle .NE. temp) then
 ^
Eos_getTempData.F90:109:0: note: ‘temp2_map’ was declared here
   integer :: temp1_map,temp2_map,temp3_map
 ^
Eos_getTempData.F90:169:0: warning: ‘temp1_map’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                  eosData(tempIon+n) = solnData(temp1_map,i,j,k)
 ^
Eos_getTempData.F90:109:0: note: ‘temp1_map’ was declared here
   integer :: temp1_map,temp2_map,temp3_map
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_logDiagnostics.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Eos_putData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Flash.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Gravity_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_bcApplyToRegion.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_computeVarNorm.F90
Eos.F90: In function ‘eos_newtonraphson’:
Eos.F90:1438:0: warning: ‘dst’ may be used uninitialized in this function [-Wmaybe-uninitialized]
     integer :: entr, dst
 ^
Eos.F90:1439:0: warning: ‘dpt’ may be used uninitialized in this function [-Wmaybe-uninitialized]
     integer :: dpt, det
 ^
Eos.F90:1439:0: warning: ‘det’ may be used uninitialized in this function [-Wmaybe-uninitialized]
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_coordTransfm.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBlkBoundBox.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBlkCornerID.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getBlkPtr.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getCellCoords.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getListOfBlocks.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getMaxCommonRefinement.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getMaxRefinement.F90
Eos.F90: In function ‘eos’:
Eos.F90:1173:0: warning: ‘c_v’ may be used uninitialized in this function [-Wmaybe-uninitialized]
               eosData(c_p+ilo:c_p+ihi) = eosData(c_p+ilo:c_p+ihi)*eosData(c_v+ilo:c_v+ihi)
 ^
Eos.F90:310:0: note: ‘c_v’ was declared here
   integer :: dpt, dpd, det, ded, c_v, c_p, gamc, pel, ne, eta
 ^
Eos.F90:874:0: warning: ‘ggprodinvele’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           eosData(abar+ilo:abar+ihi) * Zinv
 ^
Eos.F90:301:0: note: ‘ggprodinvele’ was declared here
   real :: ggprodinvEle
 ^
Eos.F90:869:0: warning: ‘gam1invele’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           eosData(eintEle+ilo:eintEle+ihi) * gam1invEle
 ^
Eos.F90:302:0: note: ‘gam1invele’ was declared here
   real :: gam1invEle, gam1invRad
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getNumVars.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_getSingleCellCoords.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_releaseBlkPtr.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_setFluxHandling.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_setSolverDbgContextInfo.F90
Grid_releaseBlkPtr.F90:126:0: warning: extra tokens at end of #endif directive [enabled by default]
 #endif !  FL_NON_PERMANENT_GUARDCELLS
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Grid_smoothVar.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heatexchange_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Heatexchange_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Hydro_mapBcType.F90
Grid_smoothVar.F90: In function ‘grid_smoothvar’:
Grid_smoothVar.F90:256:0: warning: ‘sval’ may be used uninitialized in this function [-Wmaybe-uninitialized]
            s(i, j, k) = sval
 ^
Grid_smoothVar.F90:84:0: note: ‘sval’ was declared here
   real :: sval, corr
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_stamp.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_break.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_create.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_open.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_stampMessage.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_stampVarMask.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Logfile_writeSummary.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_getAvg.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_getProperty.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_getPropertyVector.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_getSum.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_getSumFrac.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_getSumInv.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_getSumSqr.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Multispecies_setProperty.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Opacity.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Opacity_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Paramesh_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Particles_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 PhysicalConstants_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_computeDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 RadTrans_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_customizeProlong.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Simulation_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Timers_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 Timers_start.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 TreeRay_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_cp_remote.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_gen_unk_fun.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_inject.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_linear.F90
amr_1blk_cc_prol_gen_unk_fun.F90: In function ‘amr_1blk_cc_prol_gen_unk_fun’:
amr_1blk_cc_prol_gen_unk_fun.F90:53:0: warning: ‘time1’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      &                          + mpi_wtime() - time1
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_user.F90
amr_1blk_cc_cp_remote.F90: In function ‘amr_1blk_cc_cp_remote’:
amr_1blk_cc_cp_remote.F90:283:0: warning: ‘time1’ may be used uninitialized in this function [-Wmaybe-uninitialized]
            timer_amr_1blk_cc_cp_remote(2) + mpi_wtime() - time1
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_work_inject.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_work_linear.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_1blk_cc_prol_work_user.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_mg_init.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_mg_morton_process.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_mg_prolong.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_restrict_fc_ins.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 amr_set_runtime_parameters.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 cond_commonInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 cond_getCv.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 cond_logLambda.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 cond_logLambdaII.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 dr_shortenLastDt.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 dr_wallClockLimitExceeded.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam2DGridPointsRegular.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam2DGridPointsStatistical.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam2DGridWeightRegular.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam2DGridWeightStatistical.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridPointsDelta.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridPointsRadial.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridPointsRecBeam.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridPointsSquare.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridPointsStatistical.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridSetupDelta.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridWeightDelta.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridWeightRadial.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridWeightRecBeam.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridWeightSquare.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beam3DGridWeightStatistical.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamsCheck1DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamsCheck2DCyl3D.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamsCheck2DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamsCheck3DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamsInfo1DRec.F90
ed_beamsCheck2DCyl3D.F90: In function ‘ed_beamscheck2dcyl3d’:
ed_beamsCheck2DCyl3D.F90:441:0: warning: ‘minrsq’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                 minRsq = min (minRsq , Rsq1, Rsq2)
 ^
ed_beamsCheck2DCyl3D.F90:74:0: note: ‘minrsq’ was declared here
   real    :: maxRsq, minRsq
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamsInfo2DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_beamsInfo3DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_blockData3DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_computeBeamPower.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_createRays.F90
ed_beamsInfo3DRec.F90: In function ‘ed_beamsinfo3drec’:
ed_beamsInfo3DRec.F90:425:0: warning: ‘u2z’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      norm2   = u2x * u2x  +  u2y * u2y  +  u2z * u2z
 ^
ed_beamsInfo3DRec.F90:98:0: note: ‘u2z’ was declared here
   real    :: u2x, u2y, u2z
 ^
ed_beamsInfo3DRec.F90:425:0: warning: ‘u2y’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      norm2   = u2x * u2x  +  u2y * u2y  +  u2z * u2z
 ^
ed_beamsInfo3DRec.F90:98:0: note: ‘u2y’ was declared here
   real    :: u2x, u2y, u2z
 ^
ed_beamsInfo3DRec.F90:425:0: warning: ‘u2x’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      norm2   = u2x * u2x  +  u2y * u2y  +  u2z * u2z
 ^
ed_beamsInfo3DRec.F90:98:0: note: ‘u2x’ was declared here
   real    :: u2x, u2y, u2z
 ^
ed_beamsInfo3DRec.F90:424:0: warning: ‘u1z’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      norm1   = u1x * u1x  +  u1y * u1y  +  u1z * u1z
 ^
ed_beamsInfo3DRec.F90:97:0: note: ‘u1z’ was declared here
   real    :: u1x, u1y, u1z
 ^
ed_beamsInfo3DRec.F90:424:0: warning: ‘u1y’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      norm1   = u1x * u1x  +  u1y * u1y  +  u1z * u1z
 ^
ed_beamsInfo3DRec.F90:97:0: note: ‘u1y’ was declared here
   real    :: u1x, u1y, u1z
 ^
ed_beamsInfo3DRec.F90:424:0: warning: ‘u1x’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      norm1   = u1x * u1x  +  u1y * u1y  +  u1z * u1z
 ^
ed_beamsInfo3DRec.F90:97:0: note: ‘u1x’ was declared here
   real    :: u1x, u1y, u1z
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_extractBeamsData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_extractRaysData.F90
ed_extractRaysData.F90: In function ‘ed_extractraydatareal’:
ed_extractRaysData.F90:113:0: warning: ‘ray’ may be used uninitialized in this function [-Wmaybe-uninitialized]
          dataValue = ed_rays (RAY_POSX,ray)
 ^
ed_extractRaysData.F90:76:0: note: ‘ray’ was declared here
   integer :: ray
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_gridEllipseRadial.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_gridEllipseSquare.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_gridLineRegular.F90
ed_gridEllipseSquare.F90: In function ‘ed_gridellipsesquare’:
ed_gridEllipseSquare.F90:228:0: warning: ‘deltasum’ may be used uninitialized in this function [-Wmaybe-uninitialized]
          deltaSum = deltaSum + delta
 ^
ed_gridEllipseSquare.F90:143:0: note: ‘deltasum’ was declared here
   real    :: deltaInc, deltaInv, deltaSum
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_gridRectangle.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_laserIOInit.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_overrideBeamsData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_printBeamsData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_printEnergyStamp.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_printMatrix.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_saveRays.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_setupBeams.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_setupPulses.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_traceBlockRays1DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_traceBlockRays2DCyl3D.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_traceBlockRays2DRec.F90
ed_traceBlockRays2DCyl3D.F90: In function ‘ed_traceblockrays2dcyl3d’:
ed_traceBlockRays2DCyl3D.F90:675:0: warning: ‘raywriteindex’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                ed_laserIONumberOfPositions (rayWriteIndex                           ) = nRayWritePositions
 ^
ed_traceBlockRays2DCyl3D.F90:210:0: note: ‘raywriteindex’ was declared here
   integer :: ray, rayBeam, rayTag, rayWriteIndex
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_traceBlockRays3DCyl.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_traceBlockRays3DRec.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 ed_traceRays.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_byTemp.F90
ed_traceBlockRays3DCyl.F90: In function ‘ed_traceblockrays3dcyl’:
ed_traceBlockRays3DCyl.F90:699:0: warning: ‘cellvolumeinv’ may be used uninitialized in this function [-Wmaybe-uninitialized]
            cellEnergyDepot (i,j,k) = cellEnergyDepot (i,j,k) + cellEnergy * cellVolumeInv
 ^
ed_traceBlockRays3DCyl.F90:215:0: note: ‘cellvolumeinv’ was declared here
   real    :: cellVolume, cellVolumeInv
 ^
ed_traceBlockRays3DCyl.F90:804:0: warning: ‘raywriteindex’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                ed_laserIONumberOfPositions (rayWriteIndex                           ) = nRayWritePositions
 ^
ed_traceBlockRays3DCyl.F90:201:0: note: ‘raywriteindex’ was declared here
   integer :: ray, rayBeam, rayTag, rayWriteIndex
 ^
ed_traceBlockRays3DCyl.F90:1164:0: warning: ‘nudgez’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                  ed_rays (RAY_POSZ,ray) = rayZ - nudgeZ             ! needed anymore
 ^
ed_traceBlockRays3DCyl.F90:235:0: note: ‘nudgez’ was declared here
   real    :: nudgeR, nudgeZ, nudgeP
 ^
ed_traceBlockRays3DCyl.F90:1162:0: warning: ‘nudger’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                  ed_rays (RAY_POSX,ray) = rayR - nudgeR             ! undo the nudging
 ^
ed_traceBlockRays3DCyl.F90:235:0: note: ‘nudger’ was declared here
   real    :: nudgeR, nudgeZ, nudgeP
 ^
ed_traceBlockRays3DCyl.F90:1163:0: warning: ‘nudgep’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                  ed_rays (RAY_POSY,ray) = rayP - nudgeP             ! since it is not
 ^
ed_traceBlockRays3DCyl.F90:235:0: note: ‘nudgep’ was declared here
   real    :: nudgeR, nudgeZ, nudgeP
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_byTempMG.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_idealGamma.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_idealGamma3T.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_initTabulated.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_multiTypeByTemp.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabBrowseIonmix4Tables.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabBrowseIonmixTables.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabBrowseOpacplotTables.F90
eos_idealGamma.F90: In function ‘eos_idealgamma’:
eos_idealGamma.F90:1004:0: warning: ‘c_v’ may be used uninitialized in this function [-Wmaybe-uninitialized]
               eosData(c_p+ilo:c_p+ihi) = eosData(c_p+ilo:c_p+ihi)*eosData(c_v+ilo:c_v+ihi)
 ^
eos_idealGamma.F90:283:0: note: ‘c_v’ was declared here
   integer :: dpt, dpd, det, ded, c_v, c_p, gamc, pel, ne, eta
 ^
eos_idealGamma.F90:989:0: warning: ‘det’ may be used uninitialized in this function [-Wmaybe-uninitialized]
               eosData(c_v+ilo:c_v+ihi) = eosData(det+ilo:det+ihi)
 ^
eos_idealGamma.F90:283:0: note: ‘det’ was declared here
   integer :: dpt, dpd, det, ded, c_v, c_p, gamc, pel, ne, eta
 ^
eos_idealGamma.F90:569:0: warning: ‘ggprodion’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           / eosData(abar+ilo:abar+ihi)
 ^
eos_idealGamma.F90:275:0: note: ‘ggprodion’ was declared here
   real :: ggprodIon, ggprodEle
 ^
eos_idealGamma.F90:814:0: warning: ‘ggprodinvion’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           eosData(abar+ilo:abar+ihi)
 ^
eos_idealGamma.F90:276:0: note: ‘ggprodinvion’ was declared here
   real :: ggprodinvIon, ggprodinvEle
 ^
eos_idealGamma.F90:634:0: warning: ‘ggprodinvele’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           eosData(abar+ilo:abar+ihi) * Zinv
 ^
eos_idealGamma.F90:276:0: note: ‘ggprodinvele’ was declared here
   real :: ggprodinvIon, ggprodinvEle
 ^
eos_idealGamma.F90:592:0: warning: ‘ggprodinv’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           eosData(abar+ilo:abar+ihi) * ZpInv                          !overridden below!
 ^
eos_idealGamma.F90:274:0: note: ‘ggprodinv’ was declared here
   real ::  ggprod, ggprodinv, gam1inv
 ^
eos_idealGamma.F90:812:0: warning: ‘gam1invion’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           eosData(eintIon+ilo:eintIon+ihi) * gam1invIon
 ^
eos_idealGamma.F90:277:0: note: ‘gam1invion’ was declared here
   real :: gam1invIon, gam1invEle
 ^
eos_idealGamma.F90:781:0: warning: ‘gam1invele’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                                                             * eosData(dens+ilo:dens+ihi) )**gam1invEle
 ^
eos_idealGamma.F90:277:0: note: ‘gam1invele’ was declared here
   real :: gam1invIon, gam1invEle
 ^
eos_idealGamma.F90:590:0: warning: ‘gam1inv’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           eosData(eint+ilo:eint+ihi) * gam1inv                        !overridden below!
 ^
eos_idealGamma.F90:274:0: note: ‘gam1inv’ was declared here
   real ::  ggprod, ggprodinv, gam1inv
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabBrowseTables.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabFinalize.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabFindTablePos.F90
eos_idealGamma3T.F90: In function ‘eos_idealgamma3t’:
eos_idealGamma3T.F90:1270:0: warning: ‘c_v’ may be used uninitialized in this function [-Wmaybe-uninitialized]
               eosData(c_p+ilo:c_p+ihi) = eosData(game+ilo:game+ihi)*eosData(c_v+ilo:c_v+ihi)
 ^
eos_idealGamma3T.F90:313:0: note: ‘c_v’ was declared here
   integer :: dpt, dpd, det, ded, c_v, c_p, gamc, game, pel, ne, eta
 ^
eos_idealGamma3T.F90:1255:0: warning: ‘det’ may be used uninitialized in this function [-Wmaybe-uninitialized]
               eosData(c_v+ilo:c_v+ihi) = eosData(det+ilo:det+ihi)
 ^
eos_idealGamma3T.F90:313:0: note: ‘det’ was declared here
   integer :: dpt, dpd, det, ded, c_v, c_p, gamc, game, pel, ne, eta
 ^
eos_idealGamma3T.F90:871:0: warning: ‘ggprodinvele’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           eosData(abar+ilo:abar+ihi) * Zinv
 ^
eos_idealGamma3T.F90:306:0: note: ‘ggprodinvele’ was declared here
   real :: ggprodinvEle
 ^
eos_idealGamma3T.F90:866:0: warning: ‘gam1invele’ may be used uninitialized in this function [-Wmaybe-uninitialized]
           eosData(eintEle+ilo:eintEle+ihi) * gam1invEle
 ^
eos_idealGamma3T.F90:307:0: note: ‘gam1invele’ was declared here
   real :: gam1invEle
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabGetSpeciesAnyTableData.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabGetSpeciesTabulatedData.F90
eos_tabGetSpeciesAnyTableData.F90: In function ‘eos_tabgetspeciesanytabledata’:
eos_tabGetSpeciesAnyTableData.F90:190:0: warning: ‘thistypetable’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      if (.NOT.associated(thisTypeTable%table(g)%table)) then
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabIonmix.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabIonmix4.F90
eos_tabIonmix4.F90: In function ‘eos_tabionmix4’:
eos_tabIonmix4.F90:117:0: warning: ‘c_v’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   integer :: dpt, dpd, det, ded, c_v, c_p, gamc, game, pel, ne, eta
 ^
eos_tabIonmix.F90: In function ‘eos_tabionmix’:
eos_tabIonmix.F90:118:0: warning: ‘c_v’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   integer :: dpt, dpd, det, ded, c_v, c_p, gamc, game, pel, ne, eta
 ^
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabLogOutsideCounts.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabReadIonmix4Tables.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabReadIonmixTables.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabReadOpacplotTables.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabReadTables.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabUpdateOutsideCount.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabWriteSpeciesENTable.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabWriteSpeciesEntrTable.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabWriteSpeciesHCTable.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabWriteSpeciesPRTable.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabWriteSpeciesTables.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabWriteSpeciesZFTable.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabWriteTables.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_tabZeroOutsideCounts.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 eos_variableMap.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 flash_convert_cc_hook.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bcGetRegion.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bcMapBcType.F90
gr_bcGetRegion.F90:511.18:

        do var=1,0
                  1
Warning: DO loop at (1) will be executed zero times
gr_bcGetRegion.F90:552.21:

           do var=1,0
                     1
Warning: DO loop at (1) will be executed zero times
gr_bcGetRegion.F90:562.21:

           do var=1,0
                     1
Warning: DO loop at (1) will be executed zero times
gr_bcGetRegion.F90:596.18:

        do var=1,0
                  1
Warning: DO loop at (1) will be executed zero times
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_bcPutRegion.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_checkGridConsistency.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_createBlock.F90
gr_bcPutRegion.F90:455.18:

        do var=1,0
                  1
Warning: DO loop at (1) will be executed zero times
gr_bcPutRegion.F90:497.21:

           do var=1,0
                     1
Warning: DO loop at (1) will be executed zero times
gr_bcPutRegion.F90:507.21:

           do var=1,0
                     1
Warning: DO loop at (1) will be executed zero times
gr_bcPutRegion.F90:541.18:

        do var=1,0
                  1
Warning: DO loop at (1) will be executed zero times
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_ensureValidNeighborInfo.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_forceDerefInRadius.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_getInteriorBlkPtr.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreDestroyGrid.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreDestroySolver.F90
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpicc -I/users/40082858/hypre/src/include -I/opt/gridware/depots/54e7fb3c/el7/pkg/apps/hdf5_serial/1.10.1/gcc-4.8.5/include -DH5_USE_16_API -ggdb -c -O2 -Wuninitialized -D_FORTIFY_SOURCE=2 -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreF90CAdapters.c
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreInit.F90
gr_hypreF90CAdapters.c:9:30: fatal error: _hypre_parcsr_ls.h: No such file or directory
 #include "_hypre_parcsr_ls.h"
                              ^
compilation terminated.
/opt/gridware/depots/54e7fb3c/el7/pkg/mpi/mpich2/1.5/gcc-4.8.5/bin/mpif90 -I/users/40082858/hypre/src -ggdb -c -O2 -fdefault-real-8 -fdefault-double-8 -Wuninitialized  -DFLASH_3T -DMAXBLOCKS=1000 -DNXB=16 -DNYB=16 -DNZB=1 -DN_DIM=2 gr_hypreSetupSolver.F90
make: *** [gr_hypreF90CAdapters.o] Error 1
make: *** Waiting for unfinished jobs....
(base) [40082858 at login1(kelvin2) object]$ 


More information about the flash-users mailing list