Dear users and developers,

I succeeded in compiling and running cp.x using intel libraries and impi (intel-mpi) for qe-6.1 and qe-6.2. However, in both versions cp.x works but the post processing does not work i.e. cppp.x gives an error starting with (complete error attached): 

*** Error in `/home/azeeshan/software/qe/qe-6.1/bin/cppp.x': double free or corruption (out): 0x000000000229f760 ***
======= Backtrace: =========
/usr/lib64/libc.so.6(+0x7c619)[0x7f4bfa1c1619]
/usr/lib64/libc.so.6(__open_catalog+0xb6)[0x7f4bfa178e56]
/usr/lib64/libc.so.6(catopen+0x48)[0x7f4bfa178ab8]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x4ed0d1]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x4f6fbd]
/usr/lib64/libpthread.so.0(+0xf5e0)[0x7f4bfa8195e0]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x531009]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x52e81d]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x52758e]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x40496d]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x40441e]
/usr/lib64/libc.so.6(__libc_start_main+0xf5)[0x7f4bfa166c05]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x404329]

On the other hand, cppp.x runs fine with gnu compiled version of quantum espresso 6.1. Do you have any idea what might be causing the error? I have attached the make.inc for both the gnu compiled and intel compiled versions.




Thanks,
Zeeshan

--
Zeeshan Ahmad
Ph.D. candidate, Mechanical Engineering
Carnegie Mellon University
https://www.contrib.andrew.cmu.edu/~azeeshan/
# make.inc.  Generated from make.inc.in by configure.

# compilation rules

.SUFFIXES :
.SUFFIXES : .o .c .f .f90

# most fortran compilers can directly preprocess c-like directives: use
#       $(MPIF90) $(F90FLAGS) -c $<
# if explicit preprocessing by the C preprocessor is needed, use:
#       $(CPP) $(CPPFLAGS) $< -o $*.F90
#       $(MPIF90) $(F90FLAGS) -c $*.F90 -o $*.o
# remember the tabulator in the first column !!!

.f90.o:
        $(MPIF90) $(F90FLAGS) -c $<

# .f.o and .c.o: do not modify

.f.o:
        $(F77) $(FFLAGS) -c $<

.c.o:
        $(CC) $(CFLAGS)  -c $<



# Top QE directory, useful for locating libraries,  linking QE with plugins
# The following syntax should always point to TOPDIR:
TOPDIR = $(dir $(abspath $(filter %make.inc,$(MAKEFILE_LIST))))
# if it doesn't work, uncomment the following line (edit if needed):

# TOPDIR = /home/azeeshan/software/qe/qe-6.1

# DFLAGS  = precompilation options (possible arguments to -D and -U)
#           used by the C compiler and preprocessor
# FDFLAGS = as DFLAGS, for the f90 compiler
# See include/defs.h.README for a list of options and their meaning
# With the exception of IBM xlf, FDFLAGS = $(DFLAGS)
# For IBM xlf, FDFLAGS is the same as DFLAGS with separating commas

# MANUAL_DFLAGS  = additional precompilation option(s), if desired
#                  BEWARE: it does not work for IBM xlf! Manually edit FDFLAGS
MANUAL_DFLAGS  =
DFLAGS         =  -D__FFTW -D__MPI
FDFLAGS        = $(DFLAGS) $(MANUAL_DFLAGS)

# IFLAGS = how to locate directories with *.h or *.f90 file to be included
#          typically -I../include -I/some/other/directory/
#          the latter contains .e.g. files needed by FFT libraries

IFLAGS         = -I$(TOPDIR)/include -I../include/

# MOD_FLAGS = flag used by f90 compiler to locate modules
# Each Makefile defines the list of needed modules in MODFLAGS

MOD_FLAG      = -I

# Compilers: fortran-90, fortran-77, C
# If a parallel compilation is desired, MPIF90 should be a fortran-90
# compiler that produces executables for parallel execution using MPI
# (such as for instance mpif90, mpf90, mpxlf90,...);
# otherwise, an ordinary fortran-90 compiler (f90, g95, xlf90, ifort,...)
# If you have a parallel machine but no suitable candidate for MPIF90,
# try to specify the directory containing "mpif.h" in IFLAGS
# and to specify the location of MPI libraries in MPI_LIBS

MPIF90         = mpif90
#F90           = gfortran
CC             = cc
F77            = gfortran

# C preprocessor and preprocessing flags - for explicit preprocessing,
# if needed (see the compilation rules above)
# preprocessing flags must include DFLAGS and IFLAGS

CPP            = cpp
CPPFLAGS       = -P -traditional $(DFLAGS) $(IFLAGS)

# compiler flags: C, F90, F77
# C flags must include DFLAGS and IFLAGS
# F90 flags must include MODFLAGS, IFLAGS, and FDFLAGS with appropriate syntax

CFLAGS         = -O3 $(DFLAGS) $(IFLAGS)
F90FLAGS       = $(FFLAGS) -x f95-cpp-input $(FDFLAGS) $(IFLAGS) $(MODFLAGS)
FFLAGS         = -O3 -g

# compiler flags without optimization for fortran-77
# the latter is NEEDED to properly compile dlamch.f, used by lapack

FFLAGS_NOOPT   = -O0 -g

# compiler flag needed by some compilers when the main program is not fortran
# Currently used for Yambo

FFLAGS_NOMAIN   = 

# Linker, linker-specific flags (if any)
# Typically LD coincides with F90 or MPIF90, LD_LIBS is empty

LD             = mpif90
LDFLAGS        = -g -pthread
LD_LIBS        = 

# External Libraries (if any) : blas, lapack, fft, MPI

# If you have nothing better, use the local copy via "--with-netlib" :
# BLAS_LIBS = /your/path/to/espresso/LAPACK/blas.a
# BLAS_LIBS_SWITCH = internal

BLAS_LIBS      =  -lopenblas 
BLAS_LIBS_SWITCH = external

# If you have nothing better, use the local copy via "--with-netlib" :
# LAPACK_LIBS = /your/path/to/espresso/LAPACK/lapack.a
# LAPACK_LIBS_SWITCH = internal
# For IBM machines with essl (-D__ESSL): load essl BEFORE lapack !
# remember that LAPACK_LIBS precedes BLAS_LIBS in loading order

LAPACK_LIBS    =   -lopenblas 
LAPACK_LIBS_SWITCH = external

SCALAPACK_LIBS = 

# nothing needed here if the the internal copy of FFTW is compiled
# (needs -D__FFTW in DFLAGS)

FFT_LIBS       = 

# HDF5
HDF5_LIB = 

# For parallel execution, the correct path to MPI libraries must
# be specified in MPI_LIBS (except for IBM if you use mpxlf)

MPI_LIBS       = 

# IBM-specific: MASS libraries, if available and if -D__MASS is defined in 
FDFLAGS

MASS_LIBS      = 

# ar command and flags - for most architectures: AR = ar, ARFLAGS = ruv

AR             = ar
ARFLAGS        = ruv

# ranlib command. If ranlib is not needed (it isn't in most cases) use
# RANLIB = echo

RANLIB         = ranlib

# all internal and external libraries - do not modify

FLIB_TARGETS   = all

LIBOBJS        = $(TOPDIR)/clib/clib.a $(TOPDIR)/iotk/src/libiotk.a
LIBS           = $(SCALAPACK_LIBS) $(LAPACK_LIBS) $(FFT_LIBS) $(BLAS_LIBS) 
$(MPI_LIBS) $(MASS_LIBS) $(HDF5_LIB) $(LD_LIBS)

# wget or curl - useful to download from network
WGET = wget -O

# Install directory - not currently used
PREFIX = /usr/local
# make.inc.  Generated from make.inc.in by configure.

# compilation rules

.SUFFIXES :
.SUFFIXES : .o .c .f .f90

# most fortran compilers can directly preprocess c-like directives: use
#       $(MPIF90) $(F90FLAGS) -c $<
# if explicit preprocessing by the C preprocessor is needed, use:
#       $(CPP) $(CPPFLAGS) $< -o $*.F90
#       $(MPIF90) $(F90FLAGS) -c $*.F90 -o $*.o
# remember the tabulator in the first column !!!

.f90.o:
        $(MPIF90) $(F90FLAGS) -c $<

# .f.o and .c.o: do not modify

.f.o:
        $(F77) $(FFLAGS) -c $<

.c.o:
        $(CC) $(CFLAGS)  -c $<



# Top QE directory, useful for locating libraries,  linking QE with plugins
# The following syntax should always point to TOPDIR:
TOPDIR = $(dir $(abspath $(filter %make.inc,$(MAKEFILE_LIST))))
# if it doesn't work, uncomment the following line (edit if needed):

# TOPDIR = /home/azeeshan/software/qe/qe-6.1

# DFLAGS  = precompilation options (possible arguments to -D and -U)
#           used by the C compiler and preprocessor
# FDFLAGS = as DFLAGS, for the f90 compiler
# See include/defs.h.README for a list of options and their meaning
# With the exception of IBM xlf, FDFLAGS = $(DFLAGS)
# For IBM xlf, FDFLAGS is the same as DFLAGS with separating commas

# MANUAL_DFLAGS  = additional precompilation option(s), if desired
#                  BEWARE: it does not work for IBM xlf! Manually edit FDFLAGS
MANUAL_DFLAGS  =
DFLAGS         =  -D__DFTI -D__MPI
FDFLAGS        = $(DFLAGS) $(MANUAL_DFLAGS)

# IFLAGS = how to locate directories with *.h or *.f90 file to be included
#          typically -I../include -I/some/other/directory/
#          the latter contains .e.g. files needed by FFT libraries

IFLAGS         = -I$(TOPDIR)/include -I../include/ 
-I/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/include

# MOD_FLAGS = flag used by f90 compiler to locate modules
# Each Makefile defines the list of needed modules in MODFLAGS

MOD_FLAG      = -I

# Compilers: fortran-90, fortran-77, C
# If a parallel compilation is desired, MPIF90 should be a fortran-90
# compiler that produces executables for parallel execution using MPI
# (such as for instance mpif90, mpf90, mpxlf90,...);
# otherwise, an ordinary fortran-90 compiler (f90, g95, xlf90, ifort,...)
# If you have a parallel machine but no suitable candidate for MPIF90,
# try to specify the directory containing "mpif.h" in IFLAGS
# and to specify the location of MPI libraries in MPI_LIBS

MPIF90         = mpif90
#F90           = ifort
CC             = icc
F77            = ifort

# C preprocessor and preprocessing flags - for explicit preprocessing,
# if needed (see the compilation rules above)
# preprocessing flags must include DFLAGS and IFLAGS

CPP            = cpp
CPPFLAGS       = -P -traditional $(DFLAGS) $(IFLAGS)

# compiler flags: C, F90, F77
# C flags must include DFLAGS and IFLAGS
# F90 flags must include MODFLAGS, IFLAGS, and FDFLAGS with appropriate syntax

CFLAGS         = -O3 $(DFLAGS) $(IFLAGS)
F90FLAGS       = $(FFLAGS) -nomodule -fpp $(FDFLAGS) $(IFLAGS) $(MODFLAGS)
FFLAGS         = -O2 -assume byterecl -g -traceback

# compiler flags without optimization for fortran-77
# the latter is NEEDED to properly compile dlamch.f, used by lapack

FFLAGS_NOOPT   = -O0 -assume byterecl -g -traceback

# compiler flag needed by some compilers when the main program is not fortran
# Currently used for Yambo

FFLAGS_NOMAIN   = -nofor_main

# Linker, linker-specific flags (if any)
# Typically LD coincides with F90 or MPIF90, LD_LIBS is empty

LD             = mpif90
LDFLAGS        = -static-intel 
LD_LIBS        = 

# External Libraries (if any) : blas, lapack, fft, MPI

# If you have nothing better, use the local copy via "--with-netlib" :
# BLAS_LIBS = /your/path/to/espresso/LAPACK/blas.a
# BLAS_LIBS_SWITCH = internal

BLAS_LIBS      =   -lmkl_intel_lp64  -lmkl_sequential -lmkl_core
BLAS_LIBS_SWITCH = external

# If you have nothing better, use the local copy via "--with-netlib" :
# LAPACK_LIBS = /your/path/to/espresso/LAPACK/lapack.a
# LAPACK_LIBS_SWITCH = internal
# For IBM machines with essl (-D__ESSL): load essl BEFORE lapack !
# remember that LAPACK_LIBS precedes BLAS_LIBS in loading order

LAPACK_LIBS    = 
-L/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin
 -lmkl_lapack95_lp64
LAPACK_LIBS_SWITCH = external

SCALAPACK_LIBS = 

# nothing needed here if the the internal copy of FFTW is compiled
# (needs -D__FFTW in DFLAGS)

FFT_LIBS       = 

# HDF5
HDF5_LIB = 

# For parallel execution, the correct path to MPI libraries must
# be specified in MPI_LIBS (except for IBM if you use mpxlf)

MPI_LIBS       = 

# IBM-specific: MASS libraries, if available and if -D__MASS is defined in 
FDFLAGS

MASS_LIBS      = 

# ar command and flags - for most architectures: AR = ar, ARFLAGS = ruv

AR             = ar
ARFLAGS        = ruv

# ranlib command. If ranlib is not needed (it isn't in most cases) use
# RANLIB = echo

RANLIB         = ranlib

# all internal and external libraries - do not modify

FLIB_TARGETS   = all

LIBOBJS        = $(TOPDIR)/clib/clib.a $(TOPDIR)/iotk/src/libiotk.a
LIBS           = $(SCALAPACK_LIBS) $(LAPACK_LIBS) $(FFT_LIBS) $(BLAS_LIBS) 
$(MPI_LIBS) $(MASS_LIBS) $(HDF5_LIB) $(LD_LIBS)

# wget or curl - useful to download from network
WGET = wget -O

# Install directory - not currently used
PREFIX = /usr/local
*** Error in `/home/azeeshan/software/qe/qe-6.1/bin/cppp.x': double free or 
corruption (out): 0x000000000229f760 ***
======= Backtrace: =========
/usr/lib64/libc.so.6(+0x7c619)[0x7f4bfa1c1619]
/usr/lib64/libc.so.6(__open_catalog+0xb6)[0x7f4bfa178e56]
/usr/lib64/libc.so.6(catopen+0x48)[0x7f4bfa178ab8]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x4ed0d1]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x4f6fbd]
/usr/lib64/libpthread.so.0(+0xf5e0)[0x7f4bfa8195e0]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x531009]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x52e81d]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x52758e]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x40496d]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x40441e]
/usr/lib64/libc.so.6(__libc_start_main+0xf5)[0x7f4bfa166c05]
/home/azeeshan/software/qe/qe-6.1/bin/cppp.x[0x404329]
======= Memory map: ========
00400000-00631000 r-xp 00000000 fd:02 5058287801                         
/home/azeeshan/software/qe/qe-6.1/CPV/src/cppp.x
00831000-00833000 r--p 00231000 fd:02 5058287801                         
/home/azeeshan/software/qe/qe-6.1/CPV/src/cppp.x
00833000-00844000 rw-p 00233000 fd:02 5058287801                         
/home/azeeshan/software/qe/qe-6.1/CPV/src/cppp.x
00844000-016b2000 rw-p 00000000 00:00 0                                  
[stack:46917]
02288000-022a9000 rw-p 00000000 00:00 0                                  [heap]
7f4bf4000000-7f4bf4021000 rw-p 00000000 00:00 0 
7f4bf4021000-7f4bf8000000 ---p 00000000 00:00 0 
7f4bf9261000-7f4bf9d23000 rw-p 00000000 00:00 0 
7f4bf9d23000-7f4bf9d2d000 r-xp 00000000 fd:00 134346791                  
/usr/lib64/libnuma.so.1
7f4bf9d2d000-7f4bf9f2d000 ---p 0000a000 fd:00 134346791                  
/usr/lib64/libnuma.so.1
7f4bf9f2d000-7f4bf9f2e000 r--p 0000a000 fd:00 134346791                  
/usr/lib64/libnuma.so.1
7f4bf9f2e000-7f4bf9f2f000 rw-p 0000b000 fd:00 134346791                  
/usr/lib64/libnuma.so.1
7f4bf9f2f000-7f4bf9f44000 r-xp 00000000 fd:00 134835572                  
/usr/lib64/libgcc_s-4.8.5-20150702.so.1
7f4bf9f44000-7f4bfa143000 ---p 00015000 fd:00 134835572                  
/usr/lib64/libgcc_s-4.8.5-20150702.so.1
7f4bfa143000-7f4bfa144000 r--p 00014000 fd:00 134835572                  
/usr/lib64/libgcc_s-4.8.5-20150702.so.1
7f4bfa144000-7f4bfa145000 rw-p 00015000 fd:00 134835572                  
/usr/lib64/libgcc_s-4.8.5-20150702.so.1
7f4bfa145000-7f4bfa2fd000 r-xp 00000000 fd:00 134322321                  
/usr/lib64/libc-2.17.so
7f4bfa2fd000-7f4bfa4fd000 ---p 001b8000 fd:00 134322321                  
/usr/lib64/libc-2.17.so
7f4bfa4fd000-7f4bfa501000 r--p 001b8000 fd:00 134322321                  
/usr/lib64/libc-2.17.so
7f4bfa501000-7f4bfa503000 rw-p 001bc000 fd:00 134322321                  
/usr/lib64/libc-2.17.so
7f4bfa503000-7f4bfa508000 rw-p 00000000 00:00 0 
7f4bfa508000-7f4bfa609000 r-xp 00000000 fd:00 134322328                  
/usr/lib64/libm-2.17.so
7f4bfa609000-7f4bfa808000 ---p 00101000 fd:00 134322328                  
/usr/lib64/libm-2.17.so
7f4bfa808000-7f4bfa809000 r--p 00100000 fd:00 134322328                  
/usr/lib64/libm-2.17.so
7f4bfa809000-7f4bfa80a000 rw-p 00101000 fd:00 134322328                  
/usr/lib64/libm-2.17.so
7f4bfa80a000-7f4bfa821000 r-xp 00000000 fd:00 134322442                  
/usr/lib64/libpthread-2.17.so
7f4bfa821000-7f4bfaa20000 ---p 00017000 fd:00 134322442                  
/usr/lib64/libpthread-2.17.so
7f4bfaa20000-7f4bfaa21000 r--p 00016000 fd:00 134322442                  
/usr/lib64/libpthread-2.17.so
7f4bfaa21000-7f4bfaa22000 rw-p 00017000 fd:00 134322442                  
/usr/lib64/libpthread-2.17.so
7f4bfaa22000-7f4bfaa26000 rw-p 00000000 00:00 0 
7f4bfaa26000-7f4bfaa2d000 r-xp 00000000 fd:00 134322446                  
/usr/lib64/librt-2.17.so
7f4bfaa2d000-7f4bfac2c000 ---p 00007000 fd:00 134322446                  
/usr/lib64/librt-2.17.so
7f4bfac2c000-7f4bfac2d000 r--p 00006000 fd:00 134322446                  
/usr/lib64/librt-2.17.so
7f4bfac2d000-7f4bfac2e000 rw-p 00007000 fd:00 134322446                  
/usr/lib64/librt-2.17.so
7f4bfac2e000-7f4bfac30000 r-xp 00000000 fd:00 134322326                  
/usr/lib64/libdl-2.17.so
7f4bfac30000-7f4bfae30000 ---p 00002000 fd:00 134322326                  
/usr/lib64/libdl-2.17.so
7f4bfae30000-7f4bfae31000 r--p 00002000 fd:00 134322326                  
/usr/lib64/libdl-2.17.so
7f4bfae31000-7f4bfae32000 rw-p 00003000 fd:00 134322326                  
/usr/lib64/libdl-2.17.so
7f4bfae32000-7f4bfb593000 r-xp 00000000 fd:00 18554275                   
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mpi/intel64/lib/release_mt/libmpi.so.12.0
7f4bfb593000-7f4bfb792000 ---p 00761000 fd:00 18554275                   
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mpi/intel64/lib/release_mt/libmpi.so.12.0
7f4bfb792000-7f4bfb7ce000 rw-p 00760000 fd:00 18554275                   
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mpi/intel64/lib/release_mt/libmpi.so.12.0
7f4bfb7ce000-7f4bfbb64000 rw-p 00000000 00:00 0 
7f4bfbb64000-7f4bfbce2000 r-xp 00000000 fd:00 404701530                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mpi/intel64/lib/libmpifort.so.12.0
7f4bfbce2000-7f4bfbee2000 ---p 0017e000 fd:00 404701530                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mpi/intel64/lib/libmpifort.so.12.0
7f4bfbee2000-7f4bfbee9000 rw-p 0017e000 fd:00 404701530                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mpi/intel64/lib/libmpifort.so.12.0
7f4bfbee9000-7f4bfbf0d000 rw-p 00000000 00:00 0 
7f4bfbf0d000-7f4bfd9d0000 r-xp 00000000 fd:00 101461694                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_core.so
7f4bfd9d0000-7f4bfdbd0000 ---p 01ac3000 fd:00 101461694                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_core.so
7f4bfdbd0000-7f4bfdbd8000 r--p 01ac3000 fd:00 101461694                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_core.so
7f4bfdbd8000-7f4bfdbfa000 rw-p 01acb000 fd:00 101461694                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_core.so
7f4bfdbfa000-7f4bfdc51000 rw-p 00000000 00:00 0 
7f4bfdc51000-7f4bfe8fd000 r-xp 00000000 fd:00 101461703                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_sequential.so
7f4bfe8fd000-7f4bfeafd000 ---p 00cac000 fd:00 101461703                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_sequential.so
7f4bfeafd000-7f4bfeb00000 r--p 00cac000 fd:00 101461703                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_sequential.so
7f4bfeb00000-7f4bfeb12000 rw-p 00caf000 fd:00 101461703                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_sequential.so
7f4bfeb12000-7f4bff3e9000 r-xp 00000000 fd:00 101461697                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_intel_lp64.so
7f4bff3e9000-7f4bff5e8000 ---p 008d7000 fd:00 101461697                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_intel_lp64.so
7f4bff5e8000-7f4bff5ea000 r--p 008d6000 fd:00 101461697                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_intel_lp64.so
7f4bff5ea000-7f4bff5fc000 rw-p 008d8000 fd:00 101461697                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/mkl/lib/intel64_lin/libmkl_intel_lp64.so
7f4bff5fc000-7f4bff602000 rw-p 00000000 00:00 0 
7f4bff602000-7f4bff623000 r-xp 00000000 fd:00 134322314                  
/usr/lib64/ld-2.17.so
7f4bff659000-7f4bff806000 rw-p 00000000 00:00 0 
7f4bff816000-7f4bff817000 rw-p 00000000 00:00 0 
7f4bff817000-7f4bff820000 r--p 00000000 fd:00 281660089                  
/opt/ohpc/pub/intel/intel18/compilers_and_libraries_2018.0.128/linux/compiler/lib/intel64_lin/locale/en_US/ifcore_msg.cat
7f4bff820000-7f4bff823000 rw-p 00000000 00:00 0 
7f4bff823000-7f4bff824000 r--p 00021000 fd:00 134322314                  
/usr/lib64/ld-2.17.so
7f4bff824000-7f4bff825000 rw-p 00022000 fd:00 134322314                  
/usr/lib64/ld-2.17.so
7f4bff825000-7f4bff826000 rw-p 00000000 00:00 0 
7ffcedb98000-7ffcedbbb000 rw-p 00000000 00:00 0 
7ffcedbc3000-7ffcedbc5000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  
[vsyscall]
Aborted
_______________________________________________
Pw_forum mailing list
[email protected]
http://pwscf.org/mailman/listinfo/pw_forum

Reply via email to