<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re:icc: command not found. in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/icc-command-not-found/m-p/1560211#M11361</link>
    <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/250594"&gt;@Abdelghany&lt;/a&gt;&lt;/P&gt;&lt;P&gt;please have a look at this announcement here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.intel.com/t5/Intel-HPC-Toolkit/REMOVAL-NOTICE-Intel-C-Compiler-Classic/td-p/1545799" target="_blank"&gt;https://community.intel.com/t5/Intel-HPC-Toolkit/REMOVAL-NOTICE-Intel-C-Compiler-Classic/td-p/1545799&lt;/A&gt;&lt;/P&gt;&lt;P&gt;ICC is no longer available. Instead you have to switch to ICX, our new, LLVM based C compiler. IFORT will also be removed at some point, as mentioned here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.intel.com/t5/Intel-HPC-Toolkit/DEPRECATION-NOTICE-Intel-Fortran-Compiler-Classic-ifort/td-p/1545785" target="_blank"&gt;https://community.intel.com/t5/Intel-HPC-Toolkit/DEPRECATION-NOTICE-Intel-Fortran-Compiler-Classic-ifort/td-p/1545785&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 05 Jan 2024 09:48:21 GMT</pubDate>
    <dc:creator>TobiasK</dc:creator>
    <dc:date>2024-01-05T09:48:21Z</dc:date>
    <item>
      <title>icc: command not found.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/icc-command-not-found/m-p/1552393#M11234</link>
      <description>&lt;P&gt;Dear OneAPI developers,&lt;/P&gt;&lt;P&gt;In trying to solve &lt;A href="https://community.intel.com/t5/Intel-HPC-Toolkit/Assertion-failed-with-intel-hpckit/td-p/1552296" target="_self"&gt;this issue&lt;/A&gt;, I reinstalled intel-hpckit. Now I am trying to use it to compile the &lt;A href="https://berkeleygw.org/" target="_self"&gt;BerkeleyGW&lt;/A&gt; code. I used the following config file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;COMPFLAG  = -DINTEL
PARAFLAG  = -DMPI -DOMP
MATHFLAG  = -DUSESCALAPACK -DUNPACKED -DUSEFFTW3 -DHDF5 -DUSEMR3 # -DUSEPRIMME
# Only uncomment DEBUGFLAG if you need to develop/debug BerkeleyGW.
# The output will be much more verbose, and the code will slow down by ~20%.
#DEBUGFLAG = -DDEBUG

#########################################################################
#   NOTE: This arch.mk is used by the testsuite. The compiler flags are #
#   optimized to debug the code and not for code performance.           #
#########################################################################
FCPP    = /usr/bin/cpp -C  -nostdinc #  -ansi

# Intel oneAPI Compiler Options
F90free = mpiifort -free -O3 -qopenmp -g -traceback
LINK    = mpiifort -free -O3 -qopenmp -g -traceback
FOPTS   = -O3
FNOOPTS = $(FOPTS)
MOD_OPT = -module ./
INCFLAG = -I

# Intel oneAPI C Compiler Options
CC_COMP  = mpiicpc -qopenmp
C_COMP   = mpiicc  -qopenmp
C_LINK   = mpiicc  -qopenmp
C_OPTS   = -O3
C_DEBUGFLAG =

REMOVE  = /bin/rm -f

# Math Libraries
MKLROOT = /opt/intel/oneapi/mkl/latest
FFTWLIB      = $(MKLROOT)/lib/intel64/libmkl_scalapack_lp64.a -Wl,--start-group  $(MKLROOT)/lib/intel64/libmkl_intel_lp64.a \
               $(MKLROOT)/lib/intel64/libmkl_intel_thread.a $(MKLROOT)/lib/intel64/libmkl_core.a $(MKLROOT)/lib/intel64/libmkl_blacs_intelmpi_lp64.a \
               -Wl,--end-group -lpthread -lm
FFTWINCLUDE  = $(MKLROOT)/include/fftw/

LAPACKLIB = $(FFTWLIB)

# HDF5 Library Options
HDF5_LDIR    = /usr/lib64
HDF5LIB      = $(HDF5_LDIR)/libhdf5hl_fortran.a \
                $(HDF5_LDIR)/libhdf5_hl.a \
                $(HDF5_LDIR)/libhdf5_fortran.a \
                $(HDF5_LDIR)/libhdf5.a -lz -ldl
HDF5INCLUDE  = /usr/include

TESTSCRIPT =&lt;/LI-CODE&gt;&lt;P&gt;But I got the following Error:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;make[4]: Entering directory '/rhome/Ragab/source_codes/BerkeleyGW-3.0.1'
/usr/bin/cpp -C  -nostdinc  -I./Common  -DINTEL -DMPI -DOMP -DUSESCALAPACK -DUNPACKED -DUSEFFTW3 -DHDF5 -DUSEMR3   Common/nrtype.f90 &amp;gt; Common/nrtype.p.f
mpiicc  -qopenmp -I./Common  -DINTEL   -c -O3 Common/os_c.c -o Common/os_c.o
/usr/bin/cpp -C  -nostdinc  -I./Common  -DINTEL -DMPI -DOMP -DUSESCALAPACK -DUNPACKED -DUSEFFTW3 -DHDF5 -DUSEMR3   Common/scalapack_aux.f90 &amp;gt; Common/scalapack_aux.p.f
/usr/bin/cpp -C  -nostdinc  -I./Common  -DINTEL -DMPI -DOMP -DUSESCALAPACK -DUNPACKED -DUSEFFTW3 -DHDF5 -DUSEMR3   Common/blas.f90 &amp;gt; Common/blas.p.f
/usr/bin/cpp -C  -nostdinc  -I./Common  -DINTEL -DMPI -DOMP -DUSESCALAPACK -DUNPACKED -DUSEFFTW3 -DHDF5 -DUSEMR3   Common/lapack.f90 &amp;gt; Common/lapack.p.f
/opt/intel/oneapi/mpi/latest/bin/mpiicx: line 552: icc: command not found
mpiifort -free -O3 -qopenmp -g -traceback -I ./Common -I /opt/intel/oneapi/mkl/latest/include/fftw/ -I /usr/include -c -O3 Common/nrtype.p.f -o Common/nrtype.o -module ./Common/
make[4]: *** [Common/common-rules.mk:314: Common/os_c.o] Error 127
make[4]: *** Waiting for unfinished jobs....
mpiifort -free -O3 -qopenmp -g -traceback -I ./Common -I /opt/intel/oneapi/mkl/latest/include/fftw/ -I /usr/include -c -O3 Common/scalapack_aux.p.f -o Common/scalapack_aux.o -module ./Common/
mpiifort -free -O3 -qopenmp -g -traceback -I ./Common -I /opt/intel/oneapi/mkl/latest/include/fftw/ -I /usr/include -c -O3 Common/blas.p.f -o Common/blas.o -module ./Common/
mpiifort -free -O3 -qopenmp -g -traceback -I ./Common -I /opt/intel/oneapi/mkl/latest/include/fftw/ -I /usr/include -c -O3 Common/lapack.p.f -o Common/lapack.o -module ./Common/
make[4]: Leaving directory '/rhome/Ragab/source_codes/BerkeleyGW-3.0.1'
make[3]: *** [Makefile:8: pre] Error 2
make[3]: Leaving directory '/rhome/Ragab/source_codes/BerkeleyGW-3.0.1'
make[2]: *** [Makefile:115: all] Error 2
make[2]: Leaving directory '/rhome/Ragab/source_codes/BerkeleyGW-3.0.1'
make[1]: *** [Makefile:126: real] Error 2
make[1]: Leaving directory '/rhome/Ragab/source_codes/BerkeleyGW-3.0.1'
make: *** [Makefile:119: all-flavors] Error 2&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Are there any suggestions to solve it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ragab.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Dec 2023 19:10:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/icc-command-not-found/m-p/1552393#M11234</guid>
      <dc:creator>Abdelghany</dc:creator>
      <dc:date>2023-12-10T19:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: icc: command not found.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/icc-command-not-found/m-p/1553047#M11251</link>
      <description>&lt;P&gt;&lt;FONT size="4"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Thanks for posting in Intel communities!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;We endeavored to recreate the issue by carefully following the provided steps:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Ensured the latest MPI was sourced.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Duplicated the config/stampede.tacc.utexas.edu_threaded_hdf5.mk configuration file to create arch.mk.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Made necessary edits to arch.mk in accordance with your configuration.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Executed the command make all-flavors -j 16.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Regrettably, we encountered some issues during this process. I have attached the log file. If possible, could you please confirm whether the recreation steps are accurate?&amp;nbsp; If not, kindly provide us with the detailed recreation steps.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Your assistance in clarifying these details would be immensely helpful.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Veena&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 12:20:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/icc-command-not-found/m-p/1553047#M11251</guid>
      <dc:creator>VeenaJ_Intel</dc:creator>
      <dc:date>2023-12-12T12:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: icc: command not found.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/icc-command-not-found/m-p/1553834#M11271</link>
      <description>&lt;P&gt;Hi Veena,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply. Here are the steps I followed to compile BerkeleyGW-3.0.1 using Intel oneAPI Compiler:&lt;/P&gt;&lt;P&gt;1- Downloading and extracting the source code (BerkeleyGW-3.0.1.tar.gz)&lt;BR /&gt;2- Copy the appropriate *.mk file from the config directory to the working directory and rename it arch.mk.&lt;BR /&gt;3- Edit arch.mk to fit your needs (as shown above)&lt;BR /&gt;4- Copy the file flavor_cplx.mk to flavor.mk&lt;BR /&gt;5- Executed the command make all-flavors -j 16&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;After doing these steps I got the same error. Please find the attached log file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ragab&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2023 06:37:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/icc-command-not-found/m-p/1553834#M11271</guid>
      <dc:creator>Abdelghany</dc:creator>
      <dc:date>2023-12-14T06:37:21Z</dc:date>
    </item>
    <item>
      <title>Re:icc: command not found.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/icc-command-not-found/m-p/1560211#M11361</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/250594"&gt;@Abdelghany&lt;/a&gt;&lt;/P&gt;&lt;P&gt;please have a look at this announcement here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.intel.com/t5/Intel-HPC-Toolkit/REMOVAL-NOTICE-Intel-C-Compiler-Classic/td-p/1545799" target="_blank"&gt;https://community.intel.com/t5/Intel-HPC-Toolkit/REMOVAL-NOTICE-Intel-C-Compiler-Classic/td-p/1545799&lt;/A&gt;&lt;/P&gt;&lt;P&gt;ICC is no longer available. Instead you have to switch to ICX, our new, LLVM based C compiler. IFORT will also be removed at some point, as mentioned here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.intel.com/t5/Intel-HPC-Toolkit/DEPRECATION-NOTICE-Intel-Fortran-Compiler-Classic-ifort/td-p/1545785" target="_blank"&gt;https://community.intel.com/t5/Intel-HPC-Toolkit/DEPRECATION-NOTICE-Intel-Fortran-Compiler-Classic-ifort/td-p/1545785&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Jan 2024 09:48:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/icc-command-not-found/m-p/1560211#M11361</guid>
      <dc:creator>TobiasK</dc:creator>
      <dc:date>2024-01-05T09:48:21Z</dc:date>
    </item>
  </channel>
</rss>

