Difference between revisions of "HPC:Boost"

From HPC wiki
 
(3 intermediate revisions by one other user not shown)
Line 6: Line 6:
  
 
==== Additional versions of Boost ====
 
==== Additional versions of Boost ====
Boost v1.55.0 and v1.57.0 are both available as modules. The example C++ code below can be used to test Boost v1.55.0 and v1.57.0 functionality on the PMACS cluster but '''not''' the system default version.
+
Boost v1.55.0 and v1.57.0 are both available as modules. The example C++ code below can be used to test Boost v1.55.0 and v1.57.0 functionality on the PMACS cluster.
  
Code below has been adapted from the Boost [http://www.boost.org/doc/libs/1_57_0/doc/html/mpi/getting_started.html documentation]
+
Code below has been adapted from the following sources [http://www.boost.org/doc/libs/1_57_0/doc/html/mpi/getting_started.html 1] and [http://particlephysicsandcode.com/ 2]
 
<pre>
 
<pre>
 
#include <iostream>
 
#include <iostream>
#include <mpi.h>
+
#include "boost/mpi.hpp"
  
int main( int argc, char* argv[])
+
int main(int argc, char* argv[])
 
{
 
{
   MPI_Init(&argc, &argv);
+
   // Allows you to query the MPI environment
 +
  boost::mpi::environment env( argc, argv );
 +
  std::string node_name( env.processor_name() );
  
   int rank;
+
   // permits communication and synchronization among a set of processes
   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
+
  boost::mpi::communicator my_world;
   if (rank == 0) {
+
   unsigned int rank( my_world.rank() ), cpu_num( my_world.size() );
    int value = 17;
+
 
    int result = MPI_Send(&value, 1, MPI_INT, 1, 0, MPI_COMM_WORLD);
+
   if ( rank == 0 ) {
    if (result == MPI_SUCCESS)
+
std::cout << "Node name: " << node_name << "\n";
  std::cout << "Rank 0 OK!" << std::endl;
+
std::cout << "Master (" << rank << "/" << cpu_num << ")\n";
   } else if (rank == 1) {
+
   } else {
    int value;
+
std::cout << "Slave  (" << rank << "/" << cpu_num << ")\n";
    int result = MPI_Recv(&value, 1, MPI_INT, 0, 0, MPI_COMM_WORLD,
 
  MPI_STATUS_IGNORE);
 
    if (result == MPI_SUCCESS && value == 17)
 
  std::cout << "Rank 1 OK!" << std::endl;
 
 
   }
 
   }
  MPI_Finalize();
 
 
   return 0;
 
   return 0;
} 0;
 
 
}
 
}
 
</pre>
 
</pre>
Line 58: Line 54:
 
<pre>
 
<pre>
  
[asrini@node062 ~]$ mpic++ -W -Wall -I/opt/software/boost/1.55.0/include/ -L/opt/software/boost/1.55.0/lib/ -lboost_mpi -lboost_serialization boost_test.cpp -o Boost
+
[asrini@node062 ~]$ mpic++ -W -Wall -L/opt/software/boost/1.55.0/lib/ -lboost_mpi -lboost_serialization boost_test.cpp -o Boost
  
 
</pre>
 
</pre>
Line 66: Line 62:
 
<pre>
 
<pre>
  
[asrini@node062 ~]$ $ ldd Boost
+
[asrini@node062 ~]$ ldd Boost
linux-vdso.so.1 =>  (0x00007fff3271e000)
+
linux-vdso.so.1 =>  (0x00007fff469bd000)
libboost_mpi.so.1.55.0 => /opt/software/boost/1.55.0/lib/libboost_mpi.so.1.55.0 (0x00002b7325636000)
+
libboost_mpi.so.1.55.0 => /opt/software/boost/1.55.0/lib/libboost_mpi.so.1.55.0 (0x00002b06dbfc6000)
libboost_serialization.so.1.55.0 => /opt/software/boost/1.55.0/lib/libboost_serialization.so.1.55.0 (0x00002b7325866000)
+
libboost_serialization.so.1.55.0 => /opt/software/boost/1.55.0/lib/libboost_serialization.so.1.55.0 (0x00002b06dc1f6000)
libmpi_cxx.so.1 => /usr/lib64/openmpi/lib/libmpi_cxx.so.1 (0x00002b7325ae0000)
+
libmpi_cxx.so.1 => /usr/lib64/openmpi/lib/libmpi_cxx.so.1 (0x00002b06dc470000)
 
libmpi.so.1 => /usr/lib64/openmpi/lib/libmpi.so.1 (0x00000031d0e00000)
 
libmpi.so.1 => /usr/lib64/openmpi/lib/libmpi.so.1 (0x00000031d0e00000)
 
libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x00000031cfe00000)
 
libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x00000031cfe00000)
Line 93: Line 89:
  
 
[asrini@node062 ~]$ mpirun -np 2 ./Boost
 
[asrini@node062 ~]$ mpirun -np 2 ./Boost
Rank 0 OK!
+
Node name: node061.hpc.local
Rank 1 OK!
+
Master (0/2)
 
+
Slave  (1/2)
 
</pre>
 
</pre>
  
Line 118: Line 114:
 
<pre>
 
<pre>
  
[asrini@node062 ~]$ mpic++ -W -Wall -I/opt/software/boost/1.57.0/include/ -L/opt/software/boost/1.57.0/lib/ -lboost_mpi -lboost_serialization boost_test.cpp -o Boost
+
[asrini@node062 ~]$ mpic++ -W -Wall -L/opt/software/boost/1.57.0/lib/ -lboost_mpi -lboost_serialization boost_test.cpp -o Boost
  
 
</pre>
 
</pre>
Line 127: Line 123:
  
 
[asrini@node062 ~]$ ldd Boost
 
[asrini@node062 ~]$ ldd Boost
linux-vdso.so.1 =>  (0x00007fff9b7ff000)
+
linux-vdso.so.1 =>  (0x00007fff4e1ff000)
libboost_mpi.so.1.57.0 => /opt/software/boost/1.57.0/lib/libboost_mpi.so.1.57.0 (0x00002b83ef4fe000)
+
libboost_mpi.so.1.57.0 => /opt/software/boost/1.57.0/lib/libboost_mpi.so.1.57.0 (0x00002b55d5d0c000)
libboost_serialization.so.1.57.0 => /opt/software/boost/1.57.0/lib/libboost_serialization.so.1.57.0 (0x00002b83ef72e000)
+
libboost_serialization.so.1.57.0 => /opt/software/boost/1.57.0/lib/libboost_serialization.so.1.57.0 (0x00002b55d5f3c000)
libmpi_cxx.so.1 => /usr/lib64/openmpi/lib/libmpi_cxx.so.1 (0x00002b83ef998000)
+
libmpi_cxx.so.1 => /usr/lib64/openmpi/lib/libmpi_cxx.so.1 (0x00002b55d61a6000)
 
libmpi.so.1 => /usr/lib64/openmpi/lib/libmpi.so.1 (0x00000031d0e00000)
 
libmpi.so.1 => /usr/lib64/openmpi/lib/libmpi.so.1 (0x00000031d0e00000)
 
libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x00000031cfe00000)
 
libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x00000031cfe00000)
Line 152: Line 148:
  
 
[asrini@node062 ~]$ mpirun -np 2 ./Boost
 
[asrini@node062 ~]$ mpirun -np 2 ./Boost
Rank 0 OK!
+
Node name: node061.hpc.local
Rank 1 OK!
+
Master (0/2)
 +
Slave  (1/2)
  
 
</pre>
 
</pre>
  
 
=== Other Pages ===
 
=== Other Pages ===
 +
----
 +
<div class="mw-collapsible mw-collapsed">
 +
*[[HPC:FAQ|HPC FAQ ]]
 +
*[[HPC:Login|Connecting to the PMACS cluster]]
 +
*[[HPC:User_Guide|User Guide]]
 
*[[HPC:Software|Available Software]]
 
*[[HPC:Software|Available Software]]
*[[HPC:User_Guide|User Guide]]
+
*[[HPC:Archive System|PMACS Archive System]]
*[[HPC:Main_Page|HPC Main Page]]
+
</div>
*[[HPC:Login|Connecting to the PMACS cluster]]
 

Latest revision as of 15:21, 13 August 2019

Boost

There are currently three different versions of Boost C++ Libraries installed on all the PMACS cluster nodes.

Boost v1.41.0 is the system default version and can be linked to programs without any additional work.
Note : The default version of Boost may not include all the desired libraries. For example MPI library bindings may not work as expected.

Additional versions of Boost

Boost v1.55.0 and v1.57.0 are both available as modules. The example C++ code below can be used to test Boost v1.55.0 and v1.57.0 functionality on the PMACS cluster.

Code below has been adapted from the following sources 1 and 2

#include <iostream>
#include "boost/mpi.hpp"

int main(int argc, char* argv[])
{
  // Allows you to query the MPI environment
  boost::mpi::environment env( argc, argv );
  std::string node_name( env.processor_name() );

  // permits communication and synchronization among a set of processes
  boost::mpi::communicator my_world;
  unsigned int rank( my_world.rank() ), cpu_num( my_world.size() );

  if ( rank == 0 ) {
	std::cout << "Node name: " << node_name << "\n";
	std::cout << "Master (" << rank << "/" << cpu_num << ")\n";
  } else {
	std::cout << "Slave  (" << rank << "/" << cpu_num << ")\n";
  }
  return 0;
}

Copy the code above into a file called boost_test.cpp

Boost v1.55.0

The above code snippet is intended to verify Boost.MPI library functionality. Follow the steps below in an interactive node. Launch an interactive session with -n 2 to ensure that the number of processors used in this Boost.MPI test are accounted for

Load the appropriate Boost version module:

[asrini@consign ~]$ bsub -n 2 -Is bash

[asrini@node062 ~]$ ls boost_test.cpp
boost_test.cpp

[asrini@node062 ~]$ module load openmpi-1.5.4-x86_64

[asrini@node062 ~]$ module load boost-1.55.0

Now compile the code against the version of Boost you are testing.


[asrini@node062 ~]$ mpic++ -W -Wall -L/opt/software/boost/1.55.0/lib/ -lboost_mpi -lboost_serialization boost_test.cpp -o Boost

Verify that the executable created was indeed compiled against this version of Boost. Notice the path to libboost_mpi.so.1.55.0 in the output below:


[asrini@node062 ~]$ ldd Boost
	linux-vdso.so.1 =>  (0x00007fff469bd000)
	libboost_mpi.so.1.55.0 => /opt/software/boost/1.55.0/lib/libboost_mpi.so.1.55.0 (0x00002b06dbfc6000)
	libboost_serialization.so.1.55.0 => /opt/software/boost/1.55.0/lib/libboost_serialization.so.1.55.0 (0x00002b06dc1f6000)
	libmpi_cxx.so.1 => /usr/lib64/openmpi/lib/libmpi_cxx.so.1 (0x00002b06dc470000)
	libmpi.so.1 => /usr/lib64/openmpi/lib/libmpi.so.1 (0x00000031d0e00000)
	libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x00000031cfe00000)
	libm.so.6 => /lib64/libm.so.6 (0x00000031ce200000)
	libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00000031d0600000)
	libpthread.so.0 => /lib64/libpthread.so.0 (0x00000031cea00000)
	libc.so.6 => /lib64/libc.so.6 (0x00000031ce600000)
	librt.so.1 => /lib64/librt.so.1 (0x00000031cf600000)
	libopen-rte.so.7 => /usr/lib64/openmpi/lib/libopen-rte.so.7 (0x00000031d0a00000)
	libopen-pal.so.6 => /usr/lib64/openmpi/lib/libopen-pal.so.6 (0x00000031d0200000)
	libdl.so.2 => /lib64/libdl.so.2 (0x00000031cee00000)
	libnsl.so.1 => /lib64/libnsl.so.1 (0x00000031d1600000)
	libutil.so.1 => /lib64/libutil.so.1 (0x00000031d2200000)
	libltdl.so.7 => /usr/lib64/libltdl.so.7 (0x00000031cfa00000)
	/lib64/ld-linux-x86-64.so.2 (0x00000031cde00000)

Test run this program:


[asrini@node062 ~]$ mpirun -np 2 ./Boost
Node name: node061.hpc.local
Master (0/2)
Slave  (1/2)
Boost v1.57.0

The above code snippet is intended to verify Boost.MPI library functionality. Follow the steps below in an interactive node. Launch an interactive session with -n 2 to ensure that the number of processors used in this Boost.MPI test are accounted for

Load the appropriate Boost version module:

[asrini@consign ~]$ bsub -n 2 -Is bash

[asrini@node062 ~]$ ls boost_test.cpp
boost_test.cpp

[asrini@node061 ~]$ module load openmpi-1.5.4-x86_64

[asrini@node061 ~]$ module load boost-1.57.0

Now compile the code against the version of Boost you are testing.


[asrini@node062 ~]$ mpic++ -W -Wall -L/opt/software/boost/1.57.0/lib/ -lboost_mpi -lboost_serialization boost_test.cpp -o Boost

Verify that the executable created was indeed compiled against this version of Boost. Notice the path to libboost_mpi.so.1.57.0 in the output below:


[asrini@node062 ~]$ ldd Boost
	linux-vdso.so.1 =>  (0x00007fff4e1ff000)
	libboost_mpi.so.1.57.0 => /opt/software/boost/1.57.0/lib/libboost_mpi.so.1.57.0 (0x00002b55d5d0c000)
	libboost_serialization.so.1.57.0 => /opt/software/boost/1.57.0/lib/libboost_serialization.so.1.57.0 (0x00002b55d5f3c000)
	libmpi_cxx.so.1 => /usr/lib64/openmpi/lib/libmpi_cxx.so.1 (0x00002b55d61a6000)
	libmpi.so.1 => /usr/lib64/openmpi/lib/libmpi.so.1 (0x00000031d0e00000)
	libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x00000031cfe00000)
	libm.so.6 => /lib64/libm.so.6 (0x00000031ce200000)
	libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00000031d0600000)
	libpthread.so.0 => /lib64/libpthread.so.0 (0x00000031cea00000)
	libc.so.6 => /lib64/libc.so.6 (0x00000031ce600000)
	librt.so.1 => /lib64/librt.so.1 (0x00000031cf600000)
	libopen-rte.so.7 => /usr/lib64/openmpi/lib/libopen-rte.so.7 (0x00000031d0a00000)
	libopen-pal.so.6 => /usr/lib64/openmpi/lib/libopen-pal.so.6 (0x00000031d0200000)
	libdl.so.2 => /lib64/libdl.so.2 (0x00000031cee00000)
	libnsl.so.1 => /lib64/libnsl.so.1 (0x00000031d1600000)
	libutil.so.1 => /lib64/libutil.so.1 (0x00000031d2200000)
	libltdl.so.7 => /usr/lib64/libltdl.so.7 (0x00000031cfa00000)
	/lib64/ld-linux-x86-64.so.2 (0x00000031cde00000)

Test run this program:

 

[asrini@node062 ~]$ mpirun -np 2 ./Boost
Node name: node061.hpc.local
Master (0/2)
Slave  (1/2)

Other Pages