123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- #ifndef BOOST_COMPUTE_RANDOM_LINEAR_CONGRUENTIAL_ENGINE_HPP
- #define BOOST_COMPUTE_RANDOM_LINEAR_CONGRUENTIAL_ENGINE_HPP
- #include <algorithm>
- #include <boost/compute/types.hpp>
- #include <boost/compute/buffer.hpp>
- #include <boost/compute/kernel.hpp>
- #include <boost/compute/context.hpp>
- #include <boost/compute/program.hpp>
- #include <boost/compute/command_queue.hpp>
- #include <boost/compute/algorithm/transform.hpp>
- #include <boost/compute/container/vector.hpp>
- #include <boost/compute/detail/iterator_range_size.hpp>
- #include <boost/compute/iterator/discard_iterator.hpp>
- #include <boost/compute/utility/program_cache.hpp>
- namespace boost {
- namespace compute {
- template<class T = uint_>
- class linear_congruential_engine
- {
- public:
- typedef T result_type;
- static const T default_seed = 1;
- static const T a = 1099087573;
- static const size_t threads = 1024;
-
- explicit linear_congruential_engine(command_queue &queue,
- result_type value = default_seed)
- : m_context(queue.get_context()),
- m_multiplicands(m_context, threads * sizeof(result_type))
- {
-
- load_program();
-
- seed(value, queue);
-
- generate_multiplicands(queue);
- }
-
- linear_congruential_engine(const linear_congruential_engine<T> &other)
- : m_context(other.m_context),
- m_program(other.m_program),
- m_seed(other.m_seed),
- m_multiplicands(other.m_multiplicands)
- {
- }
-
- linear_congruential_engine<T>&
- operator=(const linear_congruential_engine<T> &other)
- {
- if(this != &other){
- m_context = other.m_context;
- m_program = other.m_program;
- m_seed = other.m_seed;
- m_multiplicands = other.m_multiplicands;
- }
- return *this;
- }
-
- ~linear_congruential_engine()
- {
- }
-
-
-
-
-
-
- void seed(result_type value, command_queue &queue)
- {
- (void) queue;
- m_seed = value;
- }
-
- void seed(command_queue &queue)
- {
- seed(default_seed, queue);
- }
-
- template<class OutputIterator>
- void generate(OutputIterator first, OutputIterator last, command_queue &queue)
- {
- size_t size = detail::iterator_range_size(first, last);
- kernel fill_kernel(m_program, "fill");
- fill_kernel.set_arg(1, m_multiplicands);
- fill_kernel.set_arg(2, first.get_buffer());
- size_t offset = 0;
- for(;;){
- size_t count = 0;
- if(size > threads){
- count = (std::min)(static_cast<size_t>(threads), size - offset);
- }
- else {
- count = size;
- }
- fill_kernel.set_arg(0, static_cast<const uint_>(m_seed));
- fill_kernel.set_arg(3, static_cast<const uint_>(offset));
- queue.enqueue_1d_range_kernel(fill_kernel, 0, count, 0);
- offset += count;
- if(offset >= size){
- break;
- }
- update_seed(queue);
- }
- }
-
- void generate(discard_iterator first, discard_iterator last, command_queue &queue)
- {
- (void) queue;
- size_t size = detail::iterator_range_size(first, last);
- uint_ max_mult =
- detail::read_single_value<T>(m_multiplicands, threads-1, queue);
- while(size >= threads) {
- m_seed *= max_mult;
- size -= threads;
- }
- m_seed *=
- detail::read_single_value<T>(m_multiplicands, size-1, queue);
- }
-
-
- template<class OutputIterator, class Function>
- void generate(OutputIterator first, OutputIterator last, Function op, command_queue &queue)
- {
- vector<T> tmp(std::distance(first, last), queue.get_context());
- generate(tmp.begin(), tmp.end(), queue);
- transform(tmp.begin(), tmp.end(), first, op, queue);
- }
-
- void discard(size_t z, command_queue &queue)
- {
- generate(discard_iterator(0), discard_iterator(z), queue);
- }
- private:
-
-
- void generate_multiplicands(command_queue &queue)
- {
- kernel multiplicand_kernel =
- m_program.create_kernel("multiplicand");
- multiplicand_kernel.set_arg(0, m_multiplicands);
- queue.enqueue_task(multiplicand_kernel);
- }
-
- void update_seed(command_queue &queue)
- {
- m_seed *=
- detail::read_single_value<T>(m_multiplicands, threads-1, queue);
- }
-
- void load_program()
- {
- boost::shared_ptr<program_cache> cache =
- program_cache::get_global_cache(m_context);
- std::string cache_key =
- std::string("__boost_linear_congruential_engine_") + type_name<T>();
- const char source[] =
- "__kernel void multiplicand(__global uint *multiplicands)\n"
- "{\n"
- " uint a = 1099087573;\n"
- " multiplicands[0] = a;\n"
- " for(uint i = 1; i < 1024; i++){\n"
- " multiplicands[i] = a * multiplicands[i-1];\n"
- " }\n"
- "}\n"
- "__kernel void fill(const uint seed,\n"
- " __global uint *multiplicands,\n"
- " __global uint *result,"
- " const uint offset)\n"
- "{\n"
- " const uint i = get_global_id(0);\n"
- " result[offset+i] = seed * multiplicands[i];\n"
- "}\n";
- m_program = cache->get_or_build(cache_key, std::string(), source, m_context);
- }
- private:
- context m_context;
- program m_program;
- T m_seed;
- buffer m_multiplicands;
- };
- }
- }
- #endif
|