Server IP : 172.67.216.182 / Your IP : 162.158.106.162 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/numeric/odeint/external/mpi/ |
Upload File : |
/* [auto_generated] boost/numeric/odeint/external/mpi/mpi_vector_state.hpp [begin_description] Copying a container from/to an mpi_state splits/joins it. [end_description] Copyright 2013 Karsten Ahnert Copyright 2013 Mario Mulansky Copyright 2013 Pascal Germroth Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_MPI_MPI_VECTOR_STATE_HPP_INCLUDED #define BOOST_NUMERIC_ODEINT_EXTERNAL_MPI_MPI_VECTOR_STATE_HPP_INCLUDED #include <vector> #include <algorithm> #include <boost/mpi.hpp> #include <boost/numeric/odeint/util/copy.hpp> #include <boost/numeric/odeint/util/split_adaptor.hpp> #include <boost/numeric/odeint/algebra/algebra_dispatcher.hpp> #include <boost/numeric/odeint/external/mpi/mpi_state.hpp> namespace boost { namespace numeric { namespace odeint { /** \brief Split data from some container on node 0 to the slaves. * Source must be a model of Random Access Range. */ template< class Source , class InnerState > struct split_impl< Source, mpi_state< InnerState >, typename boost::enable_if< boost::has_range_const_iterator<Source> >::type > { typedef typename boost::range_iterator<const Source>::type iterator; static void split( const Source &from, mpi_state< InnerState > &to ) { std::vector< InnerState > pieces; if(to.world.rank() == 0) { const size_t num = static_cast<size_t>(to.world.size()); pieces.resize(num); for(size_t i = 0 ; i < num ; i++) { iterator_range<iterator> part = detail::make_split_range(from, i, num); boost::numeric::odeint::resize(pieces[i], part); boost::numeric::odeint::copy(part, pieces[i]); } } // send to nodes boost::mpi::scatter(to.world, pieces, to(), 0); } }; /** \brief Merge data from an mpi_state to some container on node 0. * Target must be a model Single Pass Range. */ template< class Target, class InnerState > struct unsplit_impl< mpi_state< InnerState >, Target, typename boost::enable_if< boost::has_range_iterator<Target> >::type > { typedef typename boost::range_iterator<Target>::type iterator; static void unsplit( const mpi_state< InnerState > &from , Target &to ) { std::vector< InnerState > pieces; // send data to root boost::mpi::gather(from.world, from(), pieces, 0); if(from.world.rank() == 0) { // check target size size_t total_size = 0; for(size_t i = 0 ; i < pieces.size() ; i++) total_size += boost::size(pieces[i]); BOOST_ASSERT( total_size <= boost::size(to) ); // copy parts iterator out = boost::begin(to); for(size_t i = 0 ; i < pieces.size() ; i++) out = boost::copy(pieces[i], out); } } }; } } } #endif