<?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 Hello George, in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/ERROR-ld-so-object-libVT-so-from-LD-PRELOAD-cannot-be-preloaded/m-p/1157196#M6229</link>
    <description>&lt;P&gt;Hello George,&lt;/P&gt;&lt;P&gt;If .stf file is created it means that ITAC worked just fine and was able to collect trace.&lt;/P&gt;&lt;P&gt;I would guess that together with `-trace "libVT.so libmpi.so"` you exported `LD_PRELOAD=.../libVT.so`. In order to collect trace you only need to use one of this options.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I think&amp;nbsp; `-trace "libVT.so libmpi.so"` worked and&amp;nbsp; `LD_PRELOAD=.../libVT.so` did not (and that's why preload error is in logs).&lt;/P&gt;&lt;P&gt;You can fix this error like this `export LD_PRELOAD=libVT.so:libmpi.so` (also no need to provide full path to libs if you sourced itacvars.sh and mpivars.sh). libmpi.so is needed in LD_PRELOAD because you run&amp;nbsp;python application.&lt;/P&gt;&lt;P&gt;Anyway,&amp;nbsp;I recommend using&amp;nbsp;`-trace "libVT.so libmpi.so"`, no need to set additional environment variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Marat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 06 Sep 2019 08:40:41 GMT</pubDate>
    <dc:creator>Marat_S_Intel</dc:creator>
    <dc:date>2019-09-06T08:40:41Z</dc:date>
    <item>
      <title>ERROR: ld.so: object ''libVT.so' from LD_PRELOAD cannot be preloaded: ignored.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/ERROR-ld-so-object-libVT-so-from-LD-PRELOAD-cannot-be-preloaded/m-p/1157194#M6227</link>
      <description>&lt;P&gt;Dear all,&lt;BR /&gt;&lt;BR /&gt;I am using Intel Parallel Studio XE 2017.6 in order to trace a HYBRID OPENMP/MPI application.&lt;BR /&gt;&lt;BR /&gt;I use:&lt;BR /&gt;```mpiexec.hydra -trace "libVT.so libmpi.so" python ....py args```&lt;BR /&gt;and although the application runs fine and an .stf file is created with reasonable results&lt;BR /&gt;the log file of my application's execution gives me the error:&lt;BR /&gt;&lt;BR /&gt;ERROR: ld.so: object ''libVT.so' from LD_PRELOAD cannot be preloaded: ignored.&lt;BR /&gt;&lt;BR /&gt;I would expect this error to be resolved by using :&lt;BR /&gt;export LD_PRELOAD=.../libVT.so&lt;BR /&gt;&lt;BR /&gt;however it still persists.&lt;BR /&gt;&lt;BR /&gt;In case where I remove "libVT.so libmpi.so" from the command above I get:&lt;/P&gt;&lt;P&gt;ERROR: ld.so: object ''libVT.so' from LD_PRELOAD cannot be preloaded: ignored.&lt;BR /&gt;python: symbol lookup error: /rdsgpfs/general/apps/intel/2017.6/itac/2017.4.034/intel64/slib/libVT.so: undefined symbol: PMPI_Initialized&lt;BR /&gt;&lt;BR /&gt;and my application terminates without success.&lt;BR /&gt;Does that mean that even if it complains for faulty preloading, it still uses that? (I guess yes.)&lt;BR /&gt;Should I trust the results I get for the `succesfull` however `complaining` execution?&lt;BR /&gt;&lt;BR /&gt;I will be more than happy to help with more info if needed.&lt;BR /&gt;&lt;BR /&gt;Thank you in advance,&lt;BR /&gt;George Bisbas&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 13:30:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/ERROR-ld-so-object-libVT-so-from-LD-PRELOAD-cannot-be-preloaded/m-p/1157194#M6227</guid>
      <dc:creator>GeorgeBisbas</dc:creator>
      <dc:date>2019-09-05T13:30:05Z</dc:date>
    </item>
    <item>
      <title>The same happens if I use a</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/ERROR-ld-so-object-libVT-so-from-LD-PRELOAD-cannot-be-preloaded/m-p/1157195#M6228</link>
      <description>&lt;P&gt;The same happens if I use a toy mpi-hello-world program so I guess it is not specific to my application.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 13:32:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/ERROR-ld-so-object-libVT-so-from-LD-PRELOAD-cannot-be-preloaded/m-p/1157195#M6228</guid>
      <dc:creator>GeorgeBisbas</dc:creator>
      <dc:date>2019-09-05T13:32:34Z</dc:date>
    </item>
    <item>
      <title>Hello George,</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/ERROR-ld-so-object-libVT-so-from-LD-PRELOAD-cannot-be-preloaded/m-p/1157196#M6229</link>
      <description>&lt;P&gt;Hello George,&lt;/P&gt;&lt;P&gt;If .stf file is created it means that ITAC worked just fine and was able to collect trace.&lt;/P&gt;&lt;P&gt;I would guess that together with `-trace "libVT.so libmpi.so"` you exported `LD_PRELOAD=.../libVT.so`. In order to collect trace you only need to use one of this options.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I think&amp;nbsp; `-trace "libVT.so libmpi.so"` worked and&amp;nbsp; `LD_PRELOAD=.../libVT.so` did not (and that's why preload error is in logs).&lt;/P&gt;&lt;P&gt;You can fix this error like this `export LD_PRELOAD=libVT.so:libmpi.so` (also no need to provide full path to libs if you sourced itacvars.sh and mpivars.sh). libmpi.so is needed in LD_PRELOAD because you run&amp;nbsp;python application.&lt;/P&gt;&lt;P&gt;Anyway,&amp;nbsp;I recommend using&amp;nbsp;`-trace "libVT.so libmpi.so"`, no need to set additional environment variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Marat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 08:40:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/ERROR-ld-so-object-libVT-so-from-LD-PRELOAD-cannot-be-preloaded/m-p/1157196#M6229</guid>
      <dc:creator>Marat_S_Intel</dc:creator>
      <dc:date>2019-09-06T08:40:41Z</dc:date>
    </item>
    <item>
      <title>Thank you very much for the</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/ERROR-ld-so-object-libVT-so-from-LD-PRELOAD-cannot-be-preloaded/m-p/1157197#M6230</link>
      <description>&lt;P&gt;Thank you very much for the help Marat.&lt;BR /&gt;Problem solved.&lt;BR /&gt;Best,&lt;BR /&gt;George Bisbas&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2019 10:08:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/ERROR-ld-so-object-libVT-so-from-LD-PRELOAD-cannot-be-preloaded/m-p/1157197#M6230</guid>
      <dc:creator>GeorgeBisbas</dc:creator>
      <dc:date>2019-09-19T10:08:47Z</dc:date>
    </item>
  </channel>
</rss>

