parameter_cache.hpp 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. //---------------------------------------------------------------------------//
  2. // Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz@gmail.com>
  3. //
  4. // Distributed under the Boost Software License, Version 1.0
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. //
  8. // See http://boostorg.github.com/compute for more information.
  9. //---------------------------------------------------------------------------//
  10. #ifndef BOOST_COMPUTE_DETAIL_PARAMETER_CACHE_HPP
  11. #define BOOST_COMPUTE_DETAIL_PARAMETER_CACHE_HPP
  12. #include <algorithm>
  13. #include <string>
  14. #include <boost/shared_ptr.hpp>
  15. #include <boost/make_shared.hpp>
  16. #include <boost/noncopyable.hpp>
  17. #include <boost/compute/config.hpp>
  18. #include <boost/compute/device.hpp>
  19. #include <boost/compute/detail/global_static.hpp>
  20. #include <boost/compute/version.hpp>
  21. #ifdef BOOST_COMPUTE_USE_OFFLINE_CACHE
  22. #include <boost/algorithm/string/trim.hpp>
  23. #include <boost/compute/detail/path.hpp>
  24. #include <boost/property_tree/ptree.hpp>
  25. #include <boost/property_tree/json_parser.hpp>
  26. #endif // BOOST_COMPUTE_USE_OFFLINE_CACHE
  27. namespace boost {
  28. namespace compute {
  29. namespace detail {
  30. class parameter_cache : boost::noncopyable
  31. {
  32. public:
  33. parameter_cache(const device &device)
  34. : m_dirty(false),
  35. m_device_name(device.name())
  36. {
  37. #ifdef BOOST_COMPUTE_USE_OFFLINE_CACHE
  38. // get offline cache file name (e.g. /home/user/.boost_compute/tune/device.json)
  39. m_file_name = make_file_name();
  40. // load parameters from offline cache file (if it exists)
  41. if(boost::filesystem::exists(m_file_name)){
  42. read_from_disk();
  43. }
  44. #endif // BOOST_COMPUTE_USE_OFFLINE_CACHE
  45. }
  46. ~parameter_cache()
  47. {
  48. #ifdef BOOST_COMPUTE_USE_OFFLINE_CACHE
  49. write_to_disk();
  50. #endif // BOOST_COMPUTE_USE_OFFLINE_CACHE
  51. }
  52. void set(const std::string &object, const std::string &parameter, uint_ value)
  53. {
  54. m_cache[std::make_pair(object, parameter)] = value;
  55. // set the dirty flag to true. this will cause the updated parameters
  56. // to be stored to disk.
  57. m_dirty = true;
  58. }
  59. uint_ get(const std::string &object, const std::string &parameter, uint_ default_value)
  60. {
  61. std::map<std::pair<std::string, std::string>, uint_>::iterator
  62. iter = m_cache.find(std::make_pair(object, parameter));
  63. if(iter != m_cache.end()){
  64. return iter->second;
  65. }
  66. else {
  67. return default_value;
  68. }
  69. }
  70. static boost::shared_ptr<parameter_cache> get_global_cache(const device &device)
  71. {
  72. // device name -> parameter cache
  73. typedef std::map<std::string, boost::shared_ptr<parameter_cache> > cache_map;
  74. BOOST_COMPUTE_DETAIL_GLOBAL_STATIC(cache_map, caches, ((std::less<std::string>())));
  75. cache_map::iterator iter = caches.find(device.name());
  76. if(iter == caches.end()){
  77. boost::shared_ptr<parameter_cache> cache =
  78. boost::make_shared<parameter_cache>(device);
  79. caches.insert(iter, std::make_pair(device.name(), cache));
  80. return cache;
  81. }
  82. else {
  83. return iter->second;
  84. }
  85. }
  86. private:
  87. #ifdef BOOST_COMPUTE_USE_OFFLINE_CACHE
  88. // returns a string containing a cannoical device name
  89. static std::string cannonical_device_name(std::string name)
  90. {
  91. boost::algorithm::trim(name);
  92. std::replace(name.begin(), name.end(), ' ', '_');
  93. std::replace(name.begin(), name.end(), '(', '_');
  94. std::replace(name.begin(), name.end(), ')', '_');
  95. return name;
  96. }
  97. // returns the boost.compute version string
  98. static std::string version_string()
  99. {
  100. char buf[32];
  101. std::snprintf(buf, sizeof(buf), "%d.%d.%d", BOOST_COMPUTE_VERSION_MAJOR,
  102. BOOST_COMPUTE_VERSION_MINOR,
  103. BOOST_COMPUTE_VERSION_PATCH);
  104. return buf;
  105. }
  106. // returns the file path for the cached parameters
  107. std::string make_file_name() const
  108. {
  109. return detail::parameter_cache_path(true) + cannonical_device_name(m_device_name) + ".json";
  110. }
  111. // store current parameters to disk
  112. void write_to_disk()
  113. {
  114. BOOST_ASSERT(!m_file_name.empty());
  115. if(m_dirty){
  116. // save current parameters to disk
  117. boost::property_tree::ptree pt;
  118. pt.put("header.device", m_device_name);
  119. pt.put("header.version", version_string());
  120. typedef std::map<std::pair<std::string, std::string>, uint_> map_type;
  121. for(map_type::const_iterator iter = m_cache.begin(); iter != m_cache.end(); ++iter){
  122. const std::pair<std::string, std::string> &key = iter->first;
  123. pt.add(key.first + "." + key.second, iter->second);
  124. }
  125. write_json(m_file_name, pt);
  126. m_dirty = false;
  127. }
  128. }
  129. // load stored parameters from disk
  130. void read_from_disk()
  131. {
  132. BOOST_ASSERT(!m_file_name.empty());
  133. m_cache.clear();
  134. boost::property_tree::ptree pt;
  135. try {
  136. read_json(m_file_name, pt);
  137. }
  138. catch(boost::property_tree::json_parser::json_parser_error &e){
  139. // no saved cache file, ignore
  140. return;
  141. }
  142. std::string stored_device;
  143. try {
  144. stored_device = pt.get<std::string>("header.device");
  145. }
  146. catch(boost::property_tree::ptree_bad_path&){
  147. return;
  148. }
  149. std::string stored_version;
  150. try {
  151. stored_version = pt.get<std::string>("header.version");
  152. }
  153. catch(boost::property_tree::ptree_bad_path&){
  154. return;
  155. }
  156. if(stored_device == m_device_name && stored_version == version_string()){
  157. typedef boost::property_tree::ptree::const_iterator pt_iter;
  158. for(pt_iter iter = pt.begin(); iter != pt.end(); ++iter){
  159. if(iter->first == "header"){
  160. // skip header
  161. continue;
  162. }
  163. boost::property_tree::ptree child_pt = pt.get_child(iter->first);
  164. for(pt_iter child_iter = child_pt.begin(); child_iter != child_pt.end(); ++child_iter){
  165. set(iter->first, child_iter->first, boost::lexical_cast<uint_>(child_iter->second.data()));
  166. }
  167. }
  168. }
  169. m_dirty = false;
  170. }
  171. #endif // BOOST_COMPUTE_USE_OFFLINE_CACHE
  172. private:
  173. bool m_dirty;
  174. std::string m_device_name;
  175. std::string m_file_name;
  176. std::map<std::pair<std::string, std::string>, uint_> m_cache;
  177. };
  178. } // end detail namespace
  179. } // end compute namespace
  180. } // end boost namespace
  181. #endif // BOOST_COMPUTE_DETAIL_PARAMETER_CACHE_HPP